-
Notifications
You must be signed in to change notification settings - Fork 65
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.28 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.28 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
{
"name": "@0xsequence/wallet-wdk",
"version": "3.0.5",
"license": "Apache-2.0",
"type": "module",
"publishConfig": {
"access": "public"
},
"private": false,
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"test": "vitest run && npm run test:ssr",
"test:coverage": "vitest run --coverage",
"test:ssr": "node test/test-ssr-safety.js",
"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/identity-instrument": "workspace:^",
"@0xsequence/relayer": "workspace:^",
"@0xsequence/tee-verifier": "^0.1.2",
"@0xsequence/wallet-core": "workspace:^",
"@0xsequence/wallet-primitives": "workspace:^",
"idb": "^8.0.3",
"jwt-decode": "^4.0.0",
"ox": "^0.9.17",
"uuid": "^13.0.0"
}
}