-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
109 lines (109 loc) · 2.86 KB
/
package.json
File metadata and controls
109 lines (109 loc) · 2.86 KB
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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"name": "@volverjs/auth-vue",
"type": "module",
"version": "0.0.0",
"packageManager": "pnpm@10.33.0",
"description": "Simple OAuth 2 / OpenID Connect plugin for Vue 3",
"author": "8 Wave S.r.l.",
"license": "MIT",
"homepage": "https://github.com/volverjs/auth-vue",
"repository": {
"type": "git",
"url": "https://github.com/volverjs/auth-vue"
},
"bugs": {
"url": "https://github.com/volverjs/auth-vue/issues"
},
"keywords": [
"oauth",
"openid",
"vue3",
"storage"
],
"sideEffects": false,
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./src/*": "./src/*",
"./dist/*": "./dist/*",
"./storage": {
"types": "./dist/Storage.d.ts",
"import": "./dist/Storage.js"
},
"./local-storage": {
"types": "./dist/LocalStorage.d.ts",
"import": "./dist/LocalStorage.js"
},
"./session-storage": {
"types": "./dist/SessionStorage.d.ts",
"import": "./dist/SessionStorage.js"
},
"./oauth-client": {
"types": "./dist/OAuthClient.d.ts",
"import": "./dist/OAuthClient.js"
}
},
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"typesVersions": {
"*": {
"*": [
"dist/index.d.ts"
],
"storage": [
"dist/Storage.d.ts"
],
"local-storage": [
"dist/LocalStorage.d.ts"
],
"session-storage": [
"dist/SessionStorage.d.ts"
],
"oauth-client": [
"dist/OAuthClient.d.ts"
]
}
},
"files": [
"*.d.ts",
"dist",
"src"
],
"engines": {
"node": ">= 20.x"
},
"scripts": {
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"type-check": "tsc --noEmit",
"dev": "vite build --watch",
"build": "vite build",
"test": "npm run test-vitest",
"test-vitest": "vitest run",
"test-vitest-watch": "vitest",
"credits": "npx @opengovsg/credits-generator"
},
"peerDependencies": {
"vue": "^3.5.x"
},
"dependencies": {
"oauth4webapi": "^3.8.5"
},
"devDependencies": {
"@antfu/eslint-config": "^7.7.3",
"@nabla/vite-plugin-eslint": "^3.0.1",
"copy": "^0.3.2",
"eslint": "^10.1.0",
"happy-dom": "^20.8.8",
"node-fetch": "^3.3.2",
"typescript": "^6.0.2",
"unplugin-dts": "1.0.0-beta.6",
"vite": "^8.0.3",
"vitest": "^4.1.1",
"vitest-fetch-mock": "^0.4.5",
"vue-tsc": "^3.2.6"
}
}