-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.2 KB
/
package.json
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
{
"name": "spl-gov-proposal-notification",
"version": "1.0.0",
"description": "",
"main": "index.js",
"bin": {
"notifier": "./dist/index.js"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"cli": "ts-node src/index.ts",
"lint": "gts lint",
"lint:fix": "gts fix",
"clean": "gts clean",
"compile": "tsc",
"build": "pnpm compile"
},
"keywords": [
"spl-governance",
"solana",
"notifier"
],
"author": "Marinade.Finance",
"license": "ISC",
"dependencies": {
"@coral-xyz/anchor": "0.28",
"@marinade.finance/cli-common": "^2.4.9",
"@marinade.finance/spl-gov-utils": "^2.4.9",
"@solana/spl-governance": "^0.3.28",
"@solana/web3.js": "^1.98.0",
"axios": "^1.7.4",
"bn.js": "^5.2.0",
"commander": "^13.1.0",
"pino": "^9.6.0",
"pino-pretty": "^13.0.0",
"redis": "^4.6.7"
},
"devDependencies": {
"@types/node": "^22.10.7",
"gts": "^6.0.2",
"ts-node": "^10.9.1",
"typescript": "~5.7.3"
},
"pnpm": {
"overrides": {
"braces@<3.0.3": "3.0.3",
"cross-spawn@<7.0.5": "7.0.5",
"micromatch@<4.0.8": "4.0.8"
}
},
"engines": {
"node": ">=16.0.0"
}
}