-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
82 lines (82 loc) · 2.34 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "@suiet/wallet-kit",
"version": "0.2.16",
"type": "module",
"files": [
"dist"
],
"module": "dist/index.js",
"main": "dist/index.umd.cjs",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.umd.cjs"
},
"./style.css": "./dist/style.css"
},
"types": "./dist/index.d.ts",
"dependencies": {
"@mysten/sui.js": "0.39.0",
"@mysten/wallet-standard": "0.5.14",
"@radix-ui/react-dialog": "^1.0.2",
"@svgr/rollup": "^6.5.1",
"@wallet-standard/core": "1.0.3",
"buffer": "^6.0.3",
"classnames": "^2.3.2",
"lodash-es": "^4.17.21",
"mitt": "^3.0.0",
"react-query": "^3.39.2",
"@suiet/wallet-sdk": "https://github.com/jh-9527/suiet-wallet-sdk.git"
},
"devDependencies": {
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/npm": "^9.0.1",
"@types/jest": "^28.1.7",
"@types/lodash": "^4.14.188",
"@types/lodash-es": "^4.17.6",
"@types/lossless-json": "^1.0.1",
"@types/react": "^18.0.25",
"@types/react-dom": "^18.0.8",
"@vanilla-extract/css": "^1.9.0",
"@vanilla-extract/vite-plugin": "^3.4.0",
"@vitejs/plugin-react": "^2.1.0",
"jest": "^28.1.3",
"jest-simple-dot-reporter": "^1.0.5",
"postcss": "^8.4.19",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"sass": "^1.56.1",
"semantic-release": "^19.0.5",
"ts-jest": "^28.0.8",
"typescript": "^4.8.4",
"typescript-plugin-css-modules": "^3.4.0",
"vite": "^3.1.0",
"vite-plugin-svgr": "^2.2.1"
},
"peerDependencies": {
"@mysten/sui.js": "0.39.0",
"@mysten/wallet-standard": "0.5.14"
},
"repository": {
"type": "git",
"url": "https://github.com/suiet/wallet-kit.git"
},
"release": {
"branches": [
"main"
],
"plugins": [
"@semantic-release/changelog",
"@semantic-release/npm"
]
},
"scripts": {
"dev": "vite",
"build": "tsc --emitDeclarationOnly && vite build",
"preview": "vite preview",
"test": "jest --reporters jest-simple-dot-reporter --collectCoverage=false",
"test:watch": "jest --reporters jest-simple-dot-reporter --collectCoverage=false --watch",
"test:coverage": "jest --detectOpenHandles --runInBand --logHeapUsage --verbose --no-cache --bail --watchAll=false --ci --reporters=default",
"semantic-release": "semantic-release"
}
}