-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 791 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 791 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
{
"name": "vetoken",
"version": "1.0.0",
"description": "VeToken is an open source vote escrow based simplified solana staking program for veNFT.",
"main": "index.js",
"engines": {
"node": ">=20"
},
"scripts": {
"build": "tsc",
"test": "vitest",
"create-ns": "tsx scripts/create-namespace.ts"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@coral-xyz/borsh": "^0.30.0",
"@solana/spl-token": "^0.4.6",
"@solana/web3.js": "^1.91.7",
"bn.js": "^5.2.1",
"bs58": "^6.0.0",
"buffer": "^6.0.3",
"chalk": "^4.1.2",
"dotenv": "^17.0.1"
},
"devDependencies": {
"@types/bn.js": "^5.1.5",
"solana-bankrun": "^0.3.0",
"tsx": "^4.20.3",
"typescript": "^5.4.5",
"vitest": "^1.5.3"
}
}