-
Notifications
You must be signed in to change notification settings - Fork 65
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 999 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 999 Bytes
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
{
"name": "@0xsequence/dapp-client",
"version": "3.0.5",
"license": "Apache-2.0",
"type": "module",
"publishConfig": {
"access": "public"
},
"private": false,
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"typecheck": "tsc --noEmit",
"clean": "rimraf dist",
"lint": "eslint . --max-warnings 0"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"devDependencies": {
"@repo/eslint-config": "workspace:^",
"@repo/typescript-config": "workspace:^",
"@types/node": "^25.3.0",
"@vitest/coverage-v8": "^4.0.18",
"dotenv": "^17.3.1",
"fake-indexeddb": "^6.2.5",
"happy-dom": "^20.8.9",
"typescript": "^5.9.3",
"vitest": "^4.0.18"
},
"dependencies": {
"@0xsequence/guard": "workspace:^",
"@0xsequence/relayer": "workspace:^",
"@0xsequence/wallet-core": "workspace:^",
"@0xsequence/wallet-primitives": "workspace:^",
"ox": "^0.9.17"
}
}