-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
52 lines (52 loc) · 1.21 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
{
"name": "vue-sui-dapp-kit",
"version": "0.1.0",
"author": "movefuns",
"license": "MIT",
"keywords": [
"vue",
"web3",
"sui",
"dapp"
],
"type": "module",
"main": "./dist/.ts",
"exports": {
".": {
"import": "./dist/index.esm.js",
"node": "./dist/index.umd.js",
"require": "./dist/index.cjs.js",
"types": "./dist/types/index.d.ts"
}
},
"scripts": {
"dev": "vite",
"test": "vitest",
"build": "vue-tsc && vite build",
"preview": "vite preview"
},
"files": [
"CHANGELOG.md",
"LICENSE",
"README.md",
"dist",
"src"
],
"dependencies": {
"@mysten/sui.js": "^0.48.1",
"@mysten/wallet-standard": "^0.9.0",
"pinia": "^2.1.7",
"vue": "^3.3.11"
},
"devDependencies": {
"@types/node": "^20.10.4",
"@vitejs/plugin-vue": "^4.5.2",
"@vue/test-utils": "2.4.0-alpha.2",
"happy-dom": "^12.10.3",
"typescript": "^5.2.2",
"vite": "^5.0.8",
"vite-plugin-dts": "^3.6.4",
"vitest": "^1.0.4",
"vue-tsc": "^1.8.25"
}
}