-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 2.03 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 2.03 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
{
"name": "@0xsequence/kit-wallet",
"version": "4.4.6",
"description": "Wallet UI for Sequence Kit",
"repository": "https://github.com/0xsequence/kit/tree/master/packages/wallet",
"author": "Horizon Blockchain Games",
"license": "Apache-2.0",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/types/index.d.ts",
"exports": {
".": {
"types": "./dist/types/index.d.ts",
"require": "./dist/cjs/index.js",
"import": "./dist/esm/index.js",
"default": "./dist/esm/index.js"
}
},
"files": [
"src",
"dist"
],
"scripts": {
"build": "pnpm build:clean && pnpm build:esm && pnpm build:cjs && pnpm build:types",
"build:cjs": "tsc --module commonjs --outDir dist/cjs/",
"build:esm": "tsc --module es2022 --outDir dist/esm/",
"build:types": "tsc --declaration --declarationMap --emitDeclarationOnly --declarationDir dist/types/",
"build:clean": "rimraf -g ./dist",
"dev": "tsc --watch --module es2022 --declaration --declarationMap --outDir dist/esm/ --declarationDir dist/types/",
"test": "echo",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@radix-ui/react-popover": "^1.0.7",
"dayjs": "^1.11.11",
"fuse.js": "^6.6.2",
"qrcode.react": "^4.0.1",
"react-copy-to-clipboard": "^5.1.0"
},
"peerDependencies": {
"@0xsequence/design-system": ">= 1.7.8",
"@0xsequence/kit": "workspace:*",
"@0xsequence/api": ">= 2.1.4",
"@0xsequence/indexer": ">= 2.1.4",
"@0xsequence/metadata": ">= 2.1.4",
"@0xsequence/network": ">= 2.1.4",
"@tanstack/react-query": ">= 5.0.0",
"ethers": ">= 6.13.0",
"framer-motion": ">= 8.5.2",
"react": ">= 17",
"react-dom": ">= 17",
"wagmi": "^2.13.3",
"viem": ">= 2.0.0"
},
"devDependencies": {
"@0xsequence/design-system": "^1.7.8",
"@0xsequence/kit": "workspace:*",
"@types/react-copy-to-clipboard": "^5.0.7",
"ethers": "^6.13.0",
"framer-motion": "^8.5.2",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"wagmi": "^2.13.3"
}
}