-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
64 lines (64 loc) · 1.62 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
{
"name": "@dreamonkey/vue-auth0",
"version": "1.0.0",
"description": "@auth0/auth0-spa-js wrapper in the 'Vue way', with full TS support",
"keywords": [
"vue",
"vue-router",
"auth0",
"typescript",
"composable",
"guard"
],
"author": "Paolo Caleffi <[email protected]> (https://github.com/IlCallo)",
"license": "MIT",
"files": [
"dist"
],
"main": "dist/index.js",
"scripts": {
"lint": "eslint --ext .js,.ts,.vue ./ --fix --report-unused-disable-directives",
"format": "prettier --write \"**/*.{json,md,graphql,vue,js,ts}\" --ignore-path .gitignore",
"build": "rimraf dist && tsc --declaration",
"deploy": "pnpm build && pnpm publish --tag latest"
},
"repository": {
"type": "git",
"url": "https://github.com/dreamonkey/vue-auth0"
},
"bugs": "https://github.com/dreamonkey/vue-auth0/issues",
"engines": {
"node": ">= 12.22.1",
"npm": ">= 6.14.12",
"yarn": ">= 1.17.3"
},
"dependencies": {
"@vueuse/core": "^7.5.3"
},
"devDependencies": {
"@auth0/auth0-spa-js": "^1.19.0",
"@babel/types": "^7.16.8",
"@typescript-eslint/eslint-plugin": "^5.9.1",
"@typescript-eslint/parser": "^5.9.1",
"eslint": "^8.6.0",
"eslint-config-prettier": "^8.3.0",
"prettier": "^2.5.1",
"rimraf": "^3.0.2",
"typescript": "^4.5.4",
"vue": "^3.2.26",
"vue-router": "^4.0.0"
},
"peerDependencies": {
"@auth0/auth0-spa-js": "^1.19.0",
"vue": "^3.0.0",
"vue-router": "^4.0.0"
},
"peerDependenciesMeta": {
"vue-router": {
"optional": true
}
},
"publishConfig": {
"access": "public"
}
}