-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.17 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.17 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
{
"private": true,
"license": "ISC",
"scripts": {
"lint:fix": "prettier */*.js \"*/**/*{.js,.ts}\" -w",
"lint": "prettier */*.js \"*/**/*{.js,.ts}\" --check",
"generate-clients": "ts-node --transpile-only scripts/generate-clients.ts"
},
"workspaces": [
"./clients/js",
"./"
],
"dependencies": {
"@coral-xyz/anchor": "^0.30.1",
"@metaplex-foundation/mpl-token-metadata": "^3.4.0",
"@metaplex-foundation/mpl-toolbox": "^0.10.0",
"@metaplex-foundation/umi": "^1.1.1",
"@metaplex-foundation/umi-bundle-defaults": "^1.1.1",
"@metaplex-foundation/umi-web3js-adapters": "^1.1.1",
"@noble/hashes": "^1.7.1",
"@solana/spl-token": "^0.4.13",
"@solana/web3.js": "^1.98.0",
"date-fns": "^4.1.0",
"merkletreejs": "^0.5.1"
},
"devDependencies": {
"@codama/nodes-from-anchor": "^1.1.11",
"@codama/renderers": "^1.0.19",
"@types/bn.js": "^5.1.0",
"@types/chai": "^4.3.0",
"@types/mocha": "^9.0.0",
"@types/node": "^22.13.14",
"chai": "^4.3.4",
"codama": "^1.2.11",
"litesvm": "^0.2.0",
"mocha": "^9.0.3",
"prettier": "^2.6.2",
"ts-mocha": "^10.0.0",
"typescript": "^5.0.0"
}
}