forked from ethaccount/vue-dapp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.24 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
{
"name": "@vue-dapp/core",
"version": "1.5.5",
"description": "Empower dapp developers with Vue integration for crypto wallets",
"repository": "https://github.com/vu3th/vue-dapp",
"bugs": {
"url": "https://github.com/vu3th/vue-dapp/issues"
},
"homepage": "https://github.com/vu3th/vue-dapp",
"author": "Johnson Chen <https://twitter.com/johnson86tw>",
"license": "MIT",
"keywords": [
"vue",
"vue3",
"dapp",
"web3",
"ethereum",
"crypto",
"wallet",
"composable"
],
"files": [
"dist"
],
"main": "./dist/core.mjs",
"module": "./dist/core.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/core.mjs",
"require": "./dist/core.umd.js",
"types": "./dist/index.d.ts"
}
},
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "vite build",
"watch": "vite build --watch",
"test": "vitest",
"typecheck": "vue-tsc --noEmit --skipLibCheck"
},
"devDependencies": {
"@vitejs/plugin-vue": "^5.0.3",
"pinia": "^2.1.7",
"typescript": "5.4.5",
"vite": "^5.2.9",
"vite-plugin-dts": "^3.7.2",
"vitest": "1.2.2",
"vue": "^3.4.21",
"vue-tsc": "^2.0.19"
},
"peerDependencies": {
"pinia": "^2.1.7",
"vue": "^3.3.7"
},
"gitHead": "32a6d53db2bd674115648f41c80582140175c25b"
}