-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 2.04 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 2.04 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
53
54
55
56
57
58
59
{
"license": "ISC",
"overrides": {
"bigint-buffer": "npm:bigint-buffer-fixed@^1.1.5"
},
"resolutions": {
"form-data": "4.0.4",
"bigint-buffer": "npm:bigint-buffer-fixed@^1.1.5",
"**/bigint-buffer": "npm:bigint-buffer-fixed@^1.1.5"
},
"scripts": {
"lint:fix": "prettier */*.js \"*/**/*{.js,.ts}\" -w",
"lint": "prettier */*.js \"*/**/*{.js,.ts}\" --check",
"init:config": "ts-node scripts/initialize_config.ts",
"init:config:devnet": "ts-node scripts/initialize_config.ts --cluster devnet",
"init:config:mainnet": "ts-node scripts/initialize_config.ts --cluster mainnet",
"treasury:example": "ts-node scripts/treasury-example.ts",
"update:revision": "./scripts/update-source-revision.sh",
"build:verified": "./scripts/verified-build.sh",
"check:security": "./scripts/check-security-txt.sh",
"verify": "yarn build:verified && yarn check:security",
"test:security": "./scripts/test-security-setup.sh"
},
"dependencies": {
"@coral-xyz/anchor": "0.31.1",
"@metaplex-foundation/js": "^0.20.1",
"@metaplex-foundation/mpl-token-metadata": "^3.2.1",
"@metaplex-foundation/umi": "^0.9.2",
"@metaplex-foundation/umi-bundle-defaults": "^0.9.2",
"@solana-program/system": "^0.5.0",
"@solana-program/token": "^0.7.0",
"@solana-program/token-2022": "^0.6.0",
"@solana/accounts": "^2.3.0",
"@solana/addresses": "^2.3.0",
"@solana/codecs": "^2.3.0",
"@solana/instructions": "^2.3.0",
"@solana/keys": "^2.3.0",
"@solana/kit": "^2.3.0",
"@solana/rpc": "^2.3.0",
"@solana/spl-token": "^0.4.14",
"@solana/transactions": "^2.3.0",
"@solana/web3.js": "^1.95.7",
"bs58": "^6.0.0",
"fastestsmallesttextencoderdecoder": "^1.0.22",
"ws": "^8.18.0"
},
"devDependencies": {
"@types/bn.js": "^5.1.0",
"@types/chai": "^4.3.0",
"@types/mocha": "^9.0.0",
"@types/node": "^22.0.0",
"chai": "^4.3.4",
"mocha": "^9.0.3",
"prettier": "^2.6.2",
"ts-mocha": "^10.0.0",
"ts-node": "^10.9.0",
"typescript": "^5.7.3"
}
}