forked from HashLips/hashlips_art_engine
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 829 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 829 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
{
"name": "hashlips_art_engine",
"version": "1.0.0",
"description": "HashLips Art Engine is a tool used to create multiple different instances of artworks based on provided layers.",
"main": "index.js",
"bin": "index.js",
"pkg": {
"assets": [
"layers/**/*"
],
"scripts": [
"src/main.js",
"src/config.js"
],
"outputPath": "dist"
},
"scripts": {
"build": "node index.js",
"test": "echo \"Error: no test specified\" && exit 1",
"generate": "node index.js",
"rarity": "node utils/rarity.js",
"preview": "node utils/preview.js",
"pixelate": "node utils/pixelate.js",
"update_info": "node utils/update_info.js"
},
"author": "Daniel Eugene Botha (HashLips)",
"license": "MIT",
"dependencies": {
"canvas": "^2.8.0",
"sha1": "^1.1.1"
}
}