forked from aeyakovenko/percolator-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 823 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 823 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
{
"name": "percolator-cli",
"version": "0.1.0",
"license": "Apache-2.0",
"type": "module",
"bin": {
"percolator-cli": "./dist/index.js"
},
"files": [
"dist"
],
"scripts": {
"build": "tsup",
"dev": "pnpm build && node dist/index.js",
"test": "tsx test/abi.test.ts && tsx test/pda.test.ts && tsx test/slab.test.ts && tsx test/validation.test.ts"
},
"dependencies": {
"@pythnetwork/hermes-client": "^2.1.0",
"@pythnetwork/pyth-solana-receiver": "^0.13.0",
"@solana/spl-token": "^0.3.11",
"@solana/web3.js": "^1.95.4",
"commander": "^12.1.0",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/node": "^20.17.10",
"dotenv": "^17.2.4",
"tsup": "^8.3.5",
"tsx": "^4.21.0",
"typescript": "^5.7.2"
},
"engines": {
"node": ">=20"
}
}