forked from HashLips/hashlips_art_engine
-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
36 lines (36 loc) · 973 Bytes
/
package.json
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
{
"name": "shinobi_art_engine",
"version": "1.0.0",
"description": "Shinobi Art Engine is a tool used to create multiple different instances of artworks based on provided layers.",
"exports": "./index.js",
"bin": "index.js",
"type": "module",
"pkg": {
"assets": [
"layers/**/*",
"node_modules/**/*",
"src/**/*"
]
},
"scripts": {
"build": "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",
"preview_gif": "node utils/preview_gif.js",
"openai": "node utils/openai.js",
"bcmr": "node utils/bcmr.js",
"migrate": "node utils/migrate.js"
},
"author": "CashNinjas",
"license": "MIT",
"dependencies": {
"@bitauth/libauth": "2.0.0-alpha.8",
"canvas": "^2.8.0",
"dotenv": "^16.3.1",
"gif-encoder-2": "^1.0.5",
"openai": "^4.6.0",
"sha1": "^1.1.1"
}
}