-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
130 lines (130 loc) · 3.52 KB
/
package.json
File metadata and controls
130 lines (130 loc) · 3.52 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
123
124
125
126
127
128
129
130
{
"name": "@nefty/cli",
"version": "0.3.3",
"description": "The NeftyBlocks cli will help you manage your collection with commands to create templates, mint assets, and more.",
"keywords": [
"oclif"
],
"homepage": "https://github.com/neftyblocks/neftyblocks-cli",
"bugs": "https://github.com/neftyblocks/neftyblocks-cli/issues",
"repository": "neftyblocks/neftyblocks-cli",
"license": "MIT",
"author": "NeftyBlocks",
"type": "module",
"exports": "./lib/index.js",
"types": "dist/index.d.ts",
"bin": {
"nefty": "./bin/run.js"
},
"files": [
"/bin",
"/dist",
"/oclif.manifest.json"
],
"scripts": {
"build": "shx rm -rf dist && tsc -b",
"lint": "eslint . --ext .ts",
"prepack": "oclif manifest && oclif readme",
"postpack": "shx rm -f oclif.manifest.json",
"test": "mocha --forbid-only \"test/**/*.test.ts\"",
"posttest": "yarn lint",
"version": "oclif readme && git add README.md",
"prepare": "husky install",
"fixreadme": "sed -i'.original' -e 's/\\/dist\\/commands/\\/src\\/commands/g' README.md"
},
"oclif": {
"bin": "nefty",
"commands": "./dist/commands",
"dirname": "nefty",
"plugins": [
"@oclif/plugin-help",
"@oclif/plugin-not-found"
],
"topicSeparator": " ",
"topics": {
"config": {
"description": "Commands to configure the cli."
},
"templates": {
"description": "Commands to manage a collection's templates."
},
"assets": {
"description": "Commands to manage a collection's assets."
},
"generate": {
"description": "Commands to generate a files for batch commands."
},
"pfps": {
"description": "Commands to manage pfps collections."
},
"tokens": {
"description": "Commands to manage tokens."
},
"swap": {
"description": "Commands to manage liquidity pools and swaps."
}
}
},
"dependencies": {
"@inquirer/prompts": "^3.1.1",
"@nefty/cli": "file:nefty-cli-0.3.3.tgz",
"@oclif/core": "^3",
"@oclif/plugin-help": "^6",
"@oclif/plugin-not-found": "^3",
"@oclif/plugin-plugins": "^5",
"@wharfkit/session": "^1.2.7",
"@wharfkit/wallet-plugin-anchor": "^1.3.0",
"atomicassets": "^1.5.1",
"cli-progress": "^3.12.0",
"gifenc": "^1.0.3",
"is-ipfs": "^8.0.4",
"kubo-rpc-client": "^4.1.1",
"multiformats": "^13.3.1",
"node-fetch": "2.6.7",
"ora": "^8.0.1",
"qrcode-terminal": "^0.12.0",
"read-excel-file": "^5.6.1",
"sharp": "^0.32.5",
"sharp-gif2": "^0.1.3",
"terminal-link": "^3.0.0",
"undici": "^6.14.1",
"write-excel-file": "^1.4.27"
},
"devDependencies": {
"@oclif/prettier-config": "^0.2.1",
"@oclif/test": "^3",
"@types/chai": "^4",
"@types/inquirer": "^9.0.7",
"@types/mocha": "^10",
"@types/node": "^18",
"@types/node-fetch": "^2.6.4",
"@types/qrcode-terminal": "^0.12.0",
"@typescript-eslint/eslint-plugin": "^6.6.0",
"@typescript-eslint/parser": "^6.6.0",
"chai": "^4",
"eslint": "^8",
"eslint-config-oclif": "^5",
"eslint-config-oclif-typescript": "^3",
"eslint-config-prettier": "^9.1.0",
"husky": "^8",
"lint-staged": "^14.0.1",
"mocha": "^10",
"oclif": "^4.9.0",
"prettier": "^3.2.5",
"shx": "^0.3.4",
"ts-node": "^10.9.2",
"typescript": "^5"
},
"engines": {
"node": ">=18.0.0"
},
"lint-staged": {
"*.ts": [
"eslint",
"prettier --check"
]
},
"resolutions": {
"sharp": "0.32.5"
}
}