-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
22 lines (22 loc) · 946 Bytes
/
package.json
File metadata and controls
22 lines (22 loc) · 946 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
"name": "dmtool",
"version": "0.1.0",
"private": true,
"description": "DMT on-chain art tool: build inline renderers from local layers with Natcats-style block gating; simulate and analyze rarity distributions.",
"bin": {
"dmtool": "./bin/dmtool.js"
},
"scripts": {
"help": "node bin/dmtool.js --help",
"build": "node bin/dmtool.js build --config dmtool.config.json",
"build:compress": "node bin/dmtool.js build --config dmtool.config.json --compress",
"build:nocompress": "node bin/dmtool.js build --config dmtool.config.json --no-compress",
"simulate": "node bin/dmtool.js simulate --config dmtool.config.json --sample 20000",
"analyze": "node bin/dmtool.js analyze --config dmtool.config.json --ticker dmt-natcats",
"weights:validate": "node bin/dmtool.js weights:validate --config dmtool.config.json",
"init": "node bin/dmtool.js init"
},
"dependencies": {
"sharp": "^0.32.6"
}
}