-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.41 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
{
"name": "@gravitano/vue-auth",
"version": "0.2.0",
"description": "Authentication Plugin for Vue 3",
"author": "Warsono <warsono16694@gmail.com>",
"homepage": "",
"license": "MIT",
"files": [
"src",
"dist"
],
"scripts": {
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0",
"test": "echo \"Error: run tests from root\" && exit 1",
"build": "vite build && tsc --emitDeclarationOnly && mv dist/src dist/types",
"prepublishOnly": "npm run build",
"release": "standard-version"
},
"dependencies": {
"axios": "^0.27.2",
"js-cookie": "^3.0.1",
"jwt-decode": "^3.1.2",
"lodash.get": "^4.4.2",
"lodash.merge": "^4.6.2",
"pinia": "^2.0.20",
"secure-ls": "^1.2.6",
"vue": "^3.2.37",
"vue-router": "^4.1.4",
"vuex": "^4.0.2"
},
"gitHead": "a3873617b764442416da0687a66a7ba20638c7cb",
"devDependencies": {
"@types/js-cookie": "^3.0.2",
"@types/lodash": "^4.14.184",
"@types/lodash.get": "^4.4.7",
"@types/lodash.merge": "^4.6.7",
"standard-version": "^9.5.0",
"typescript": "^4.7.4",
"vite": "^3.0.9"
},
"main": "./dist/vue-auth.js",
"unpkg": "./dist/vue-auth.iife.js",
"jsdelivr": "./dist/vue-auth.iife.js",
"module": "./dist/vue-auth.mjs",
"exports": {
".": {
"import": "./dist/vue-auth.mjs",
"require": "./dist/vue-auth.js"
}
},
"types": "./dist/types/index.d.ts"
}