-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
63 lines (63 loc) · 1.3 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
{
"name": "vue3-oidc",
"version": "1.0.0",
"description": "vue3-oidc",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"files": [
"dist",
"types"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
},
"./types/*": "./types/*.d.ts"
},
"packageManager": "[email protected]",
"scripts": {
"dev": "tsup --watch src",
"build": "tsup",
"patch": "npm version patch && npm publish",
"minor": "npm version minor && npm publish",
"major": "npm version major && npm publish"
},
"keywords": [
"vue3-oidc",
"oidc-client",
"oidc"
],
"author": "zhazhazhu",
"license": "ISC",
"repository": {
"url": "https://github.com/zhazhazhu/vue3-oidc"
},
"devDependencies": {
"@types/node": "^18.0.0",
"tsup": "^6.1.2",
"typescript": "^4.7.4",
"vite": "^2.9.13",
"vitest": "^0.16.0",
"vue": "^3.2.37"
},
"dependencies": {
"@vueuse/core": "^10.2.0",
"oidc-client-ts": "^2.4.0",
"vue": ">=3.0.0"
},
"peerDependencies": {
"vue": ">=3.0.0"
},
"peerDependenciesMeta": {
"vue": {
"optional": true
}
},
"publishConfig": {
"registry": "https://registry.npmjs.org",
"access": "public"
}
}