-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.69 KB
/
Copy pathpackage.json
File metadata and controls
47 lines (47 loc) · 1.69 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
{
"name": "prettysafe",
"version": "1.0.0",
"private": true,
"license": "MIT",
"type": "module",
"workspaces": [
"packages/*",
"apps/*"
],
"scripts": {
"dev": "cd apps/web && bun run dev",
"build": "cd packages/erc8117 && bun run build && cd ../core && bun run build && cd ../../apps/web && bun run build",
"build:packages": "cd packages/erc8117 && bun run build && cd ../core && bun run build",
"preview": "cd apps/web && bun run preview",
"typecheck": "tsc --noEmit -p tsconfig.json",
"typecheck:web": "cd apps/web && bun run typecheck",
"benchmark": "bun run cli/benchmark.ts",
"test": "bun run cli/test.ts",
"test:derivation": "npx tsx apps/web/src/lib/test-derivation.ts",
"mine": "bun run cli/mine.ts",
"propose": "bun run cli/propose.ts",
"propose:test": "bun run cli/propose-test.ts",
"propose:e2e": "bun run cli/propose-e2e-test.ts",
"keyminer": "bun run cli/keyminer.ts",
"keyminer:test": "bun run cli/keyminer-test.ts",
"keyminer:e2e": "bun run cli/keyminer-e2e-test.ts",
"keyminer:verify-all": "bun run packages/core/tests/test-keyminer-verify-all.ts",
"test:field": "bun run packages/core/tests/test-secp256k1-field.ts",
"test:keccak": "bun run packages/core/tests/test-keccak256.ts",
"test:ec": "bun run packages/core/tests/test-secp256k1-ec.ts"
},
"dependencies": {
"@safe-global/api-kit": "^5.0.1",
"@safe-global/protocol-kit": "^8.0.2",
"@safe-global/types-kit": "^4.0.1",
"@webgpu/types": "^0.1.68",
"bun-webgpu": "^0.1.4",
"ethers": "^6.16.0",
"viem": "^2.21.0"
},
"devDependencies": {
"@types/bun": "^1.3.14",
"tsup": "^8.0.0",
"typescript": "^5.0.0"
}
}