-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 1019 Bytes
/
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
{
"name": "glitter-lock",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"localnet:up": "set -x; solana-localnet down; set -e; solana-localnet up",
"localnet:down": "solana-localnet down",
"localnet:logs": "solana-localnet logs -f",
"build:program": "cd ./src/program-rust;cargo build-bpf -- -Z unstable-options --out-dir ../../out/;",
"deploy:program": "solana deploy ./out/glitter_lock.so",
"main": "ts-node src/scripts/main.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/saadjhk/glitter-lock.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/saadjhk/glitter-lock/issues"
},
"homepage": "https://github.com/saadjhk/glitter-lock#readme",
"dependencies": {
"@solana/web3.js": "^1.66.2",
"bignumber.js": "^9.1.0",
"ts-node": "^10.9.1"
},
"devDependencies": {
"dotenv": "^16.0.3"
}
}