-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.11 KB
/
package.json
File metadata and controls
87 lines (87 loc) · 2.11 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "@fangorn-network/sdk",
"version": "2026.04.10",
"description": "A zero-knowledge conditional access control framework",
"repository": {
"type": "git",
"url": "git+https://github.com/fangorn-network/fangorn.git"
},
"bin": {
"fangorn": "lib/cli/cli.js"
},
"license": "MIT",
"type": "module",
"main": "lib/index.js",
"files": [
"lib/"
],
"scripts": {
"build": "tsdown",
"format": "prettier . --write",
"lint": "eslint . --max-warnings 0",
"prepare": "husky",
"test": "dotenvx run -f .env -- vitest run",
"test:e2e": "dotenvx run -f .env -- vitest run --config vitest.e2e.config.ts",
"tsc": "tsc",
"deploy": "dotenvx run -f .env -- tsx deploy.ts",
"prepare:cli": "npm run build",
"fangorn": "dotenvx run -f .env -- node dist/src/cli/cli.js"
},
"lint-staged": {
"*": "prettier --ignore-unknown --write"
},
"devDependencies": {
"@dotenvx/dotenvx": "^1.51.1",
"@eslint/js": "9.39.1",
"@types/node": "24.10.1",
"@vitest/coverage-v8": "4.0.15",
"@vitest/eslint-plugin": "1.5.1",
"eslint": "9.39.1",
"husky": "9.1.7",
"lint-staged": "16.2.7",
"prettier": "3.7.3",
"tsdown": "0.16.8",
"tsx": "^4.21.0",
"typescript": "5.8.3",
"typescript-eslint": "8.48.1",
"vitest": "^4.0.18"
},
"packageManager": "pnpm@10.4.0",
"engines": {
"node": ">=20.19.0"
},
"dependencies": {
"@a2a-js/sdk": "^0.3.10",
"@clack/prompts": "^1.0.1",
"@lit-protocol/access-control-conditions": "^8.0.2",
"@lit-protocol/auth": "^8.2.2",
"@lit-protocol/auth-helpers": "^8.2.1",
"@lit-protocol/lit-client": "^8.3.1",
"@lit-protocol/networks": "^8.4.1",
"@semaphore-protocol/group": "^4.14.2",
"@semaphore-protocol/identity": "^4.14.2",
"@semaphore-protocol/proof": "^4.14.2",
"@storacha/client": "^2.1.3",
"agent0-sdk": "^1.5.3",
"commander": "^14.0.3",
"dotenv": "^17.2.3",
"ethers": "^6.16.0",
"pinata": "^2.5.2",
"solc": "^0.8.28",
"viem": "^2.47.1"
},
"overrides": {
"viem": "$viem"
},
"pnpm": {
"overrides": {
"write-file-atomic": "7.0.0"
},
"peerDependencyRules": {
"allowedVersions": {
"viem": ">=2.38.3",
"ethers": ">=5.7.2"
}
}
}
}