-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
18 lines (18 loc) · 759 Bytes
/
package.json
File metadata and controls
18 lines (18 loc) · 759 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{
"name": "winter-wallet-program",
"version": "1.0.0",
"main": "index.js",
"author": "Dean 利迪恩 <@deanmlittle>",
"license": "MIT",
"scripts": {
"build": "cargo build-sbf",
"deploy": "solana program deploy ./target/deploy/winter-wallet-program.so --program-id ./target/deploy/winter-wallet-program.json -u localhost",
"keypair": "solana config get keypair | awk '{print $3}' | xargs cat",
"test": "export SIGNER=$(npm run -s get-keypair) && npx ts-node tests/test.ts",
"e2e": "yarn build && yarn deploy && yarn test",
"close": "solana program close --buffers --authority ./deploy/log_keypair.json -u localhost"
},
"dependencies": {
"@solana/web3.js": "1.98.0"
}
}