-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
72 lines (72 loc) · 2.36 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "@coherence-finance/sdk",
"version": "0.0.85",
"description": "SDK for Beamsplitter",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"repository": {
"type": "git",
"url": "git@github.com:coherence-finance/beamsplitter.git"
},
"author": "Coherence <engineering@coherence.finance>",
"homepage": "https://coherence.finance",
"license": "GPL-3.0",
"publishConfig": {
"access": "public"
},
"scripts": {
"move-dep": "cp -r ./node_modules/spl-token-faucet/programs/spl-token-faucet ./programs/",
"build": "tsc -P tsconfig.cjs.json && tsc -P tsconfig.build.json",
"lint": "eslint .",
"prepare": "husky install",
"typecheck": "tsc",
"copy-idl": "cp ./target/types/coherence_beamsplitter.ts src/ && cp ./target/idl/coherence_beamsplitter.json src/coherence_beamsplitter_idl.json",
"test": "anchor build && yarn copy-idl && anchor test --skip-build",
"key": "solana-keygen pubkey ./target/deploy/coherence_beamsplitter-keypair.json",
"pub": "npm version patch --force && npm run build && npm publish"
},
"dependencies": {
"@project-serum/anchor": "^0.23.0",
"@saberhq/tsconfig": "^1.12.36",
"axios": "^0.26.1",
"bs58": "^5.0.0",
"chai-as-promised": "^7.1.1",
"chai-bn": "^0.3.1"
},
"devDependencies": {
"@project-serum/common": "^0.0.1-beta.3",
"@project-serum/serum": "^0.13.61",
"@rushstack/eslint-patch": "^1.1.0",
"@saberhq/anchor-contrib": "^1.12.50",
"@saberhq/chai-solana": "^1.12.52",
"@saberhq/eslint-config": "^1.12.9",
"@saberhq/solana": "^0.7.9",
"@saberhq/solana-contrib": "^1.12.50",
"@saberhq/token-utils": "^1.12.50",
"@solana/spl-token": "^0.1.8",
"@solana/web3.js": "^1.36.0",
"@types/bn.js": "^5.1.0",
"@types/mocha": "^9.0.0",
"eslint": "^8.6.0",
"eslint-import-resolver-node": "^0.3.6",
"eslint-plugin-import": "^2.25.4",
"husky": "^7.0.4",
"jsbi": "^4.1.0",
"lint-staged": ">=10",
"mocha": "^9.0.3",
"prettier": "^2.5.1",
"ts-mocha": "^8.0.0",
"typedoc": "^0.22.15",
"typescript": "^4.3.5"
},
"peerDependencies": {
"@saberhq/anchor-contrib": "^1.12.50",
"@saberhq/solana-contrib": "^1.12.50",
"@saberhq/token-utils": "^1.12.50",
"@solana/web3.js": "^1.36.0"
},
"lint-staged": {
"*.js": "eslint --cache --fix",
"*.{js,css,md}": "prettier --write"
}
}