-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
122 lines (122 loc) · 4.13 KB
/
package.json
File metadata and controls
122 lines (122 loc) · 4.13 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
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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
{
"name": "@metaplex-foundation/cli",
"description": "Metaplex CLI",
"version": "0.4.0",
"author": "Metaplex <contact@metaplex.com>",
"bin": {
"mplx": "./bin/run.js"
},
"oclif": {
"commands": "./dist/commands",
"bin": "mplx",
"plugins": [
"@oclif/plugin-help",
"@oclif/plugin-version",
"@oclif/plugin-not-found",
"@oclif/plugin-autocomplete",
"@oclif/plugin-commands"
],
"topicSeparator": " ",
"dirname": "mplx"
},
"bugs": "https://github.com/metaplex-foundation/cli/issues",
"dependencies": {
"@inquirer/prompts": "^7.5.3",
"@ledgerhq/hw-app-solana": "7.4.0",
"@ledgerhq/hw-transport": "6.31.4",
"@ledgerhq/hw-transport-node-hid-singleton": "6.31.5",
"@metaplex-foundation/digital-asset-standard-api": "^2.0.0",
"@metaplex-foundation/genesis": "^0.35.0",
"@metaplex-foundation/mpl-agent-registry": "^0.2.5",
"@metaplex-foundation/mpl-bubblegum": "^5.0.2",
"@metaplex-foundation/mpl-core": "^1.8.0",
"@metaplex-foundation/mpl-core-candy-machine": "^0.3.0",
"@metaplex-foundation/mpl-distro": "^0.3.2",
"@metaplex-foundation/mpl-token-metadata": "^3.4.0",
"@metaplex-foundation/mpl-toolbox": "0.10.0",
"@metaplex-foundation/umi": "1.5.1",
"@metaplex-foundation/umi-bundle-defaults": "1.5.1",
"@metaplex-foundation/umi-signer-wallet-adapters": "1.5.1",
"@metaplex-foundation/umi-uploader-irys": "1.5.0",
"@metaplex-foundation/umi-web3js-adapters": "1.5.1",
"@oclif/plugin-autocomplete": "^3.2.29",
"@oclif/plugin-commands": "^4.1.25",
"@oclif/plugin-help": "^6.2.28",
"@oclif/plugin-not-found": "^3.2.54",
"@oclif/plugin-version": "^2.2.28",
"@solana/web3.js": "^1.98.2",
"ansis": "^3.17.0",
"cli-progress": "^3.12.0",
"file-type": "^21.0.0",
"mime": "^4.0.7",
"ora": "8.1.1",
"p-map": "^7.0.3",
"untildify": "^4.0.0"
},
"devDependencies": {
"@inquirer/testing": "^2.1.47",
"@metaplex-foundation/amman": "^0.12.1",
"@metaplex-foundation/amman-client": "^0.2.4",
"@oclif/core": "^4.3.0",
"@oclif/prettier-config": "^0.2.1",
"@oclif/test": "^4.1.13",
"@types/async-retry": "^1.4.9",
"@types/bn.js": "^5.1.6",
"@types/chai": "^4.3.20",
"@types/cli-progress": "^3.11.6",
"@types/mocha": "^10.0.10",
"@types/node": "^18.19.108",
"@types/node-hid": "^1.3.4",
"chai": "^4.5.0",
"eslint": "^8.57.1",
"eslint-config-oclif": "^5.2.2",
"eslint-config-oclif-typescript": "^3.1.14",
"eslint-config-prettier": "^9.1.0",
"install": "^0.13.0",
"mocha": "^10.8.2",
"mock-stdin": "^1.0.0",
"oclif": "^4.17.46",
"shx": "^0.3.4",
"ts-node": "^10.9.2",
"tsx": "^4.21.0",
"typescript": "^5.8.3"
},
"engines": {
"node": ">=20.0.0"
},
"files": [
"bin",
"dist",
"oclif.manifest.json",
"oclif.json",
"oclif.manifest.json.js"
],
"homepage": "https://github.com/metaplex-foundation/cli",
"keywords": [
"oclif"
],
"license": "Metaplex License",
"main": "dist/index.js",
"type": "module",
"repository": "metaplex-foundation/cli",
"scripts": {
"clean": "shx rm -rf dist tsconfig.build.tsbuildinfo",
"prebuild": "if [ -z \"$CI\" ]; then pnpm run clean; fi",
"build": "tsc -b tsconfig.build.json --verbose",
"build:clean": "pnpm run clean && pnpm run build",
"dev": "./bin/dev.js",
"mplx": "./bin/run.js",
"lint": "ESLINT_USE_FLAT_CONFIG=false eslint . --ext .ts",
"lint:fix": "ESLINT_USE_FLAT_CONFIG=false eslint . --ext .ts --fix",
"postpack": "shx rm -f oclif.manifest.json",
"prepack": "oclif manifest && oclif readme",
"test": "mocha --forbid-only \"test/**/*.test.ts\"",
"version": "oclif readme && git add README.md",
"validator": "CI=1 amman start --config ./.validator.cjs",
"validator:stop": "amman stop",
"verify": "tsc --noEmit && pnpm run build:clean",
"create-test-cm": "node scripts/createTestCandyMachineDirectory.js"
},
"types": "dist/index.d.ts",
"packageManager": "pnpm@9.12.3+sha512.cce0f9de9c5a7c95bef944169cc5dfe8741abfb145078c0d508b868056848a87c81e626246cb60967cbd7fd29a6c062ef73ff840d96b3c86c40ac92cf4a813ee"
}