-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
45 lines (45 loc) · 1.42 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
{
"name": "@coin98/vault-js",
"version": "1.2.6",
"description": "---",
"main": "services/index.js",
"types": "services/index.d.js",
"scripts": {
"maintain": "anchor test --skip-local-validator",
"test": "ts-mocha ./test/*.spec.ts --timeout 60000",
"build:services": "tsc",
"build:program": "anchor build",
"build": "npm run build:program && npm run build:services",
"prerelease": "npm run test && npm run build && cp .npmrc dist",
"deploy": "solana program deploy ./target/deploy/vault.so --url localhost",
"release": "standard-version && cp package.json dist && git push --follow-tags origin master && cd dist && npm publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/coin98/coin98-vault.git"
},
"author": "Coin98",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/coin98/coin98-vault/issues"
},
"homepage": "https://github.com/coin98/coin98-vault#readme",
"dependencies": {
"@coin98/solana-support-library": "^0.3.0",
"@project-serum/anchor": "^0.24.2",
"@project-serum/borsh": "^0.2.5",
"bn.js": "^5.2.1",
"moment": "^2.29.3"
},
"devDependencies": {
"@types/bn.js": "^5.1.0",
"@types/chai": "^4.3.1",
"@types/mocha": "^9.1.1",
"chai": "^4.3.6",
"mocha": "^10.0.0",
"standard-version": "^9.5.0",
"ts-mocha": "^10.0.0",
"typescript": "^4.3.5",
"@solana/web3.js": "^1.73.0"
}
}