forked from nftchef/art-engine
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 946 Bytes
/
package.json
File metadata and controls
34 lines (34 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
23
24
25
26
27
28
29
30
31
32
33
34
{
"name": "hashlips_art_engine",
"version": "1.0.6",
"description": "NFTChef Fork - HashLips Art Engine is a tool used to create multiple different instances of artworks based on provided layers.",
"main": "index.js",
"bin": "index.js",
"engines": {
"node": ">=14"
},
"pkg": {
"assets": [
"layers/**/*",
"node_modules/**/*",
"src/**/*"
]
},
"scripts": {
"build": "node index.js",
"generate": "node index.js",
"generate:solana": "node index.js && node utils/metaplex.js",
"generate:cardano": "node index.js && node utils/cardano.js",
"update_info": "node utils/updateInfo.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Daniel Eugene Botha (HashLips), NFTChef",
"license": "MIT",
"dependencies": {
"canvas": "^2.8.0",
"chalk": "^4.1.2",
"commander": "^8.2.0",
"eslint-plugin-node": "^11.1.0",
"keccak256": "^1.0.3"
}
}