forked from tensor-hq/tensorswap-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 2.07 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
{
"name": "@tensor-oss/tensorswap-sdk",
"version": "1.15.0",
"description": "Anchor/JS SDK for interacting with TensorSwap, TensorWhitelist and TensorBid.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"/dist"
],
"repository": "https://github.com/tensor-hq/tensorswap-sdk.git",
"license": "MIT",
"publishConfig": {
"@tensor-hq:registry": "https://registry.npmjs.org"
},
"scripts": {
"build": "anchor build && bash scripts/cp_idl.sh",
"build:test": "bash scripts/test_build.sh",
"fast-test": "anchor test --skip-build -- --features testing",
"test": "yarn build:test && yarn fast-test",
"push": "git push --atomic",
"build:ts": "rm -rf ./dist && yarn tsc",
"publish:public": "yarn build:ts && npm publish --access public --registry https://registry.npmjs.org"
},
"dependencies": {
"@coral-xyz/anchor": "^0.26.0",
"@msgpack/msgpack": "^2.8.0",
"@saberhq/solana-contrib": "^1.14.11",
"@solana/spl-token": "^0.3.7",
"@solana/web3.js": "^1.73.0",
"@tensor-hq/tensor-common": "^0.18.0",
"@types/bn.js": "^5.1.0",
"big.js": "^6.2.1",
"bn.js": "^5.2.0",
"keccak256": "^1.0.6",
"math-expression-evaluator": "^2.0.2",
"merkletreejs": "^0.2.32",
"uuid": "^8.3.2"
},
"devDependencies": {
"@ledgerhq/hw-app-solana": "^6.27.2",
"@ledgerhq/hw-transport-node-hid": "^6.27.2",
"@metaplex-foundation/js": "^0.18.3",
"@metaplex-foundation/mpl-token-auth-rules": "^1.2.0",
"@metaplex-foundation/mpl-token-metadata": "^2.13.0",
"@types/big.js": "^6.1.5",
"@types/chai": "^4.3.0",
"@types/chai-as-promised": "^7.1.4",
"@types/mocha": "^9.1.0",
"@types/node": "^18.7.11",
"@types/uuid": "^8.3.4",
"@types/yargs": "^17.0.12",
"chai": "^4.3.6",
"chai-as-promised": "^7.1.1",
"chai-bn": "^0.3.1",
"exponential-backoff": "^3.1.0",
"jsbi": "^4.1.0",
"mocha": "^10.0.0",
"prettier": "^2.5.1",
"ts-mocha": "^10.0.0",
"ts-node": "^10.9.1",
"typescript": "^4.3.5",
"yargs": "^17.5.1"
},
"packageManager": "[email protected]"
}