-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.63 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": "vue3-gnap",
"private": false,
"version": "1.0.18",
"author": "Michael Shihjay Chen",
"license": "MIT",
"description": "A Vue3 component to make GNAP/PDAP authorization requests (Client Instance) to a GNAP authorization server",
"repository": {
"type": "git",
"url": "https://github.com/HIEofOne/vue3-gnap.git"
},
"type": "module",
"files": [
"dist"
],
"main": "./dist/vue3-gnap.umd.cjs",
"module": "./dist/vue3-gnap.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/vue3-gnap.js",
"require": "./dist/vue3-gnap.umd.js",
"types": "./dist/index.d.ts"
},
"./dist/style.css": "./dist/style.css"
},
"scripts": {
"dev": "vite",
"build": "vue-tsc && vite build",
"types": "vue-tsc",
"preview": "vite preview"
},
"dependencies": {
"@ltonetwork/http-message-signatures": "^0.1.8",
"beercss": "^3.6.4",
"crypto-random-string": "^5.0.0",
"http-message-signatures": "^0.1.2",
"jose": "^5.6.2",
"object-path": "^0.11.8",
"typed-ls": "^0.2.0",
"uuid": "^10.0.0",
"vue": "^3.4.29"
},
"devDependencies": {
"@rollup/plugin-terser": "^0.4.4",
"@types/object-path": "^0.11.4",
"@types/uuid": "^10.0.0",
"@vitejs/plugin-vue": "^5.0.5",
"rollup": "^4.18.0",
"rollup-plugin-delete": "^2.0.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-typescript2": "^0.36.0",
"rollup-plugin-vue": "^6.0.0",
"sass": "^1.77.6",
"typescript": "^5.2.2",
"vite": "^5.3.1",
"vite-plugin-dts": "^3.9.1",
"vue-tsc": "^2.0.21"
}
}