forked from zhazhazhu/pinia-oidc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.46 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
{
"name": "pinia-oidc",
"version": "1.0.9",
"homepage": "https://github.com/zhazhazhu/pinia-oidc",
"license": "MIT",
"repository": {
"type": "git"
},
"main": "dist/index.js",
"module": "dist/index.esm.js",
"typings": "dist/index.d.ts",
"description": "Vue.js implementation of oidc-client using pinia and vue-router",
"keywords": [
"vue",
"vuejs",
"oidc",
"oidc-client",
"open id",
"open id client",
"vue oidc",
"vue open id"
],
"scripts": {
"build": "rollup -c",
"dev": "rollup -c -w",
"lint": "eslint ./src --config=.eslintrc.js",
"lint:fix": "eslint --fix ./src --config=.eslintrc.js",
"test": "nyc mocha",
"pretest": "npm run lint && npm run build",
"preversion": "npm test"
},
"peerDependencies": {
"oidc-client": ">= 1.10.1",
"pinia": ">= 2.0.0"
},
"files": [
"dist",
"index.d.ts",
"types/*.d.ts"
],
"types": "dist/index.d.ts",
"dependencies": {
"oidc-client-ts": "^2.0.4",
"typescript": "^4.6.4"
},
"devDependencies": {
"@babel/core": "^7.11.1",
"@babel/preset-env": "^7.11.0",
"@rollup/plugin-node-resolve": "^13.3.0",
"@types/node": "^17.0.33",
"atob": "^2.1.2",
"mocha": "^6.2.0",
"nyc": "^14.1.1",
"oidc-client": ">= 1.10.1",
"rollup": "^2.42.0",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-typescript2": "^0.31.2"
}
}