forked from dgrubelic/vue-authenticate
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
79 lines (79 loc) · 1.61 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "vue-authenticate-2",
"version": "2.2.0",
"description": "Authentication library for Vue.js",
"module": "dist/vue-authenticate.es.js",
"browser": "dist/vue-authenticate.umd.js",
"main": "dist/vue-authenticate.es.js",
"types": "types/index.d.ts",
"typings": "types/index.d.ts",
"scripts": {
"build": "vite build",
"lint": "eslint src",
"lint:fix": "eslint --fix src"
},
"keywords": [
"vue",
"vue.js",
"vuejs",
"json",
"jwt",
"token",
"auth",
"authentication",
"oauth",
"oauth1",
"oauth2"
],
"author": {
"name": "Davor Grubelic",
"email": "[email protected]",
"url": "https://dgrubelic.me"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ajmas/vue-authenticate.git"
},
"files": [
"dist",
"types/index.d.ts",
"README.md"
],
"license": "MIT",
"devDependencies": {
"@vitejs/plugin-vue": "^5.0.4",
"eslint": "^8.57.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-n": "^16.6.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-vue": "^9.23.0",
"vite": "^5.1.6"
},
"peerDependencies": {
"axios": "^1.6.7",
"vue": "^3.4.21"
},
"optionalDependencies": {
"@rollup/rollup-linux-x64-gnu": "^4.9.5"
},
"type": "module",
"tags": [
"auth",
"authentication",
"login",
"registration",
"jwt",
"token",
"vuejs",
"vue.js",
"github",
"facebook",
"google",
"twitter",
"oauth",
"oauth 1.0",
"oauth 2.0"
]
}