-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
93 lines (93 loc) · 2.83 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "@cks-systems/manifest-sdk",
"version": "0.1.71",
"files": [
"dist/",
"README.md",
"client/ts/src"
],
"publishConfig": {
"access": "public"
},
"description": "TypeScript SDK for Manifest",
"keywords": [
"manifest",
"solana",
"defi",
"dex",
"clob"
],
"author": "CKS Systems",
"repository": "https://github.com/CKS-Systems/manifest",
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"types": "./dist/types/src/index.d.ts",
"license": "MIT",
"scripts": {
"prepublishOnly": "cp README.md README.back.md && cp ./client/ts/README.md README.md",
"postpublish": "mv README.back.md README.md",
"build": "rimraf dist && yarn build:browser && yarn build:node && yarn build:types",
"build:node": "tsc -p tsconfig.cjs.json --noEmit false",
"build:browser": "tsc -p tsconfig.esm.json --noEmit false",
"build:types": "tsc -p tsconfig.types.json --noEmit false",
"format": "prettier --check client/ts",
"lint": "eslint client/ts/**/*.ts --ext ts --ext tsx --ext js --quiet",
"typecheck": "tsc --noEmit --pretty",
"validate": "yarn lint && yarn format",
"prepare": "yarn build",
"clean": "rm -rf dist",
"test": "TS_NODE_PROJECT='./tsconfig.cjs.json' nyc --reporter=lcov ts-mocha client/ts/tests/*.ts --parallel --jobs 64 --timeout 1200000"
},
"dependencies": {
"@metaplex-foundation/beet": "^0.7.1",
"@metaplex-foundation/rustbin": "^0.3.1",
"@metaplex-foundation/solita": "^0.12.2",
"@solana/spl-token": "^0.4.8",
"@solana/web3.js": "^1.95.1",
"bn.js": "^5.2.1",
"borsh": "^0.7.0",
"bs58": "^6.0.0",
"js-sha256": "^0.11.0",
"keccak256": "^1.0.6",
"percentile": "^1.6.0",
"prom-client": "^15.1.3",
"rimraf": "^5.0.10",
"typedoc": "^0.26.3",
"ws": "^8.18.0",
"zstddec": "^0.0.2"
},
"prettier": {
"singleQuote": true,
"trailingComma": "all",
"useTabs": false,
"bracketSpacing": true,
"semi": true,
"tabWidth": 2
},
"devDependencies": {
"@types/bn.js": "^5.1.1",
"@types/chai": "^4.3.4",
"@types/mocha": "^10.0.1",
"@types/node": "^22.7.8",
"@typescript-eslint/eslint-plugin": "^7.16.0",
"@typescript-eslint/parser": "^7.16.0",
"chai": "^4.3.7",
"codecov": "^3.8.3",
"eslint": "^8.35.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"mocha": "^10.2.0",
"nyc": "^17.0.0",
"prettier": "^3.3.2",
"rpc-websockets": "^7.5.1",
"ts-mocha": "^10.0.0",
"ts-node": "^10.9.1",
"typescript": "^5.5.3"
},
"packageManager": "[email protected]+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e",
"resolutions": {
"strip-ansi": "6.0.1",
"string-width": "4.2.2",
"wrap-ansi": "7.0.0"
}
}