-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.72 KB
/
Copy pathpackage.json
File metadata and controls
49 lines (49 loc) · 1.72 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": "airnode",
"version": "2.0.0-alpha.0",
"license": "AGPL-3.0-or-later",
"module": "src/cli/index.ts",
"type": "module",
"private": true,
"scripts": {
"airnode": "bun src/cli/index.ts",
"book:build": "(cd book && bun run build)",
"book:start": "(cd book && bun start)",
"book:version": "(cd book && bun run docusaurus docs:version)",
"build:linux-x64": "bun src/build.ts --target=bun-linux-x64 --outfile dist/airnode",
"build:osx": "bun src/build.ts --target=bun-darwin-arm64 --outfile dist/airnode",
"build:windows": "bun src/build.ts --target=bun-darwin-arm64 --outfile dist/airnode.exe",
"dev": "bun --watch src/cli/index.ts start",
"fmt": "prettier . --write && eslint . --fix",
"lint": "bun run lint:prettier && bun run lint:eslint && bun run lint:slither",
"lint:eslint": "eslint . --cache",
"lint:prettier": "prettier . --check",
"lint:slither": "(cd contracts && slither .)",
"test:contracts": "(cd contracts && forge test -vvv)",
"test:integration": "bun run integration/run-sequential.ts",
"test:unit": "bun test"
},
"dependencies": {
"@api3/promise-utils": "^0.4.0",
"@zama-fhe/relayer-sdk": "^0.4.4",
"commander": "^15.0.0",
"viem": "^2.53.1",
"yaml": "^2.9.0",
"zod": "^4.4.3"
},
"devDependencies": {
"@types/bun": "^1.3.14",
"eslint": "^10.5.0",
"eslint-import-resolver-typescript": "^4.4.5",
"eslint-plugin-functional": "^10.0.0",
"eslint-plugin-import-x": "^4.16.2",
"eslint-plugin-promise": "^7.3.0",
"eslint-plugin-unicorn": "^68.0.0",
"prettier": "3.8.4",
"prettier-plugin-solidity": "^2.3.1",
"typescript-eslint": "^8.61.1"
},
"peerDependencies": {
"typescript": "^6.0.3"
}
}