-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.61 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.61 KB
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
{
"name": "@tensor-hq/tensor-common",
"version": "8.3.3",
"description": "Common utility methods used by Tensor.",
"sideEffects": false,
"module": "./dist/esm/index.js",
"main": "./dist/cjs/index.js",
"types": "dist/cjs/index.d.ts",
"files": [
"/dist/esm/**/*",
"/dist/cjs/**/*"
],
"scripts": {
"test": "yarn ts-mocha -p ./tsconfig.cjs.json tests/**/*.test.ts",
"build": "rm -rf ./dist && yarn tsc && yarn tsc -p tsconfig.cjs.json",
"publish:private": "yarn build && yarn npm publish",
"publish:public": "yarn build && npm publish --access public --registry https://registry.npmjs.org",
"publish:all": "yarn publish:private && yarn publish:public"
},
"repository": "git@github.com:tensor-hq/tensor-common.git",
"license": "MIT",
"dependencies": {
"@coral-xyz/anchor": "^0.26.0",
"@metaplex-foundation/mpl-auction-house": "^2.1.1",
"@metaplex-foundation/mpl-bubblegum": "^0.7.0",
"@solana/spl-account-compression": "^0.1.4",
"@solana/spl-token": "^0.3.7",
"@solana/web3.js": "^1.91.1",
"axios": "^0.29.0",
"big.js": "^6.2.1",
"bn.js": "^5.2.1",
"borsh": "^0.7.0",
"bs58": "^5.0.0",
"exponential-backoff": "^3.1.1",
"js-sha3": "^0.8.0",
"semaphore": "^1.1.0"
},
"devDependencies": {
"@types/big.js": "^6.1.5",
"@types/bn.js": "^5.1.0",
"@types/chai": "^4.3.5",
"@types/mocha": "^10.0.1",
"@types/semaphore": "^1.1.1",
"chai": "^4.3.7",
"mocha": "^10.2.0",
"prettier": "^2.7.1",
"ts-mocha": "^10.0.0",
"ts-node": "^10.9.1",
"typescript": "^4.7.4"
},
"packageManager": "yarn@3.3.1"
}