-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
74 lines (74 loc) · 2.6 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
73
74
{
"name": "@tensor-oss/tcomp-sdk",
"version": "6.0.0",
"description": "Anchor/JS SDK for interacting with TCOMP.",
"sideEffects": false,
"module": "./dist/esm/index.js",
"main": "./dist/cjs/index.js",
"types": "dist/cjs/index.d.ts",
"files": [
"/dist/esm/**/*",
"/dist/cjs/**/*"
],
"repository": "https://github.com/tensor-hq/tcomp-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",
"build:ts": "rm -rf ./dist && yarn tsc && yarn tsc --p tsconfig.cjs.json",
"fast-test": "anchor test --skip-build -- --features testing",
"test": "yarn build:test && yarn fast-test",
"push": "git push --atomic",
"publish:private": "yarn build:ts && yarn npm publish",
"publish:public": "yarn build:ts && npm publish --access public --registry https://registry.npmjs.org",
"upgrade": "yarn add @tensor-hq/tensor-common @tensor-oss/tensorswap-sdk"
},
"dependencies": {
"@coral-xyz/anchor": "0.26.0",
"@metaplex-foundation/mpl-bubblegum": "~0.8.0",
"@metaplex-foundation/mpl-core": "^0.4.3",
"@metaplex-foundation/mpl-token-metadata": "^2.13.0",
"@metaplex-foundation/mpl-toolbox": "^0.9.4",
"@metaplex-foundation/umi": "^0.9.1",
"@metaplex-foundation/umi-rpc-web3js": "^0.9.1",
"@msgpack/msgpack": "^3.0.0-beta2",
"@solana/spl-account-compression": "^0.1.7",
"@solana/spl-token": "^0.4.0",
"@solana/web3.js": "^1.75.0",
"@tensor-hq/tensor-common": "^8.0.8",
"@tensor-hq/tensor-tests-common": "^0.6.0",
"@tensor-oss/tensorswap-sdk": "^4.4.2",
"bn.js": "^5.2.1",
"borsh": "^0.7.0",
"js-sha256": "^0.9.0",
"js-sha3": "^0.8.0",
"math-expression-evaluator": "^2.0.4"
},
"devDependencies": {
"@metaplex-foundation/mpl-token-auth-rules": "^3.0.1",
"@metaplex-foundation/umi": "^0.8.10",
"@metaplex-foundation/umi-bundle-defaults": "^0.8.10",
"@metaplex-foundation/umi-web3js-adapters": "^0.8.10",
"@noble/hashes": "^1.3.1",
"@saberhq/solana-contrib": "^1.14.11",
"@types/bn.js": "^5.1.1",
"@types/chai": "^4.3.4",
"@types/chai-as-promised": "^7.1.5",
"@types/mocha": "^10.0.1",
"@types/node": "^18.7.11",
"bs58": "^5.0.0",
"chai": "^4.3.7",
"chai-as-promised": "^7.1.1",
"exponential-backoff": "^3.1.1",
"merkletreejs": "^0.3.10",
"mocha": "^10.2.0",
"prettier": "^2.6.2",
"ts-mocha": "^10.0.0",
"ts-node": "^10.9.1",
"typescript": "^4.3.5"
},
"packageManager": "[email protected]"
}