-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
49 lines (49 loc) · 1.07 KB
/
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
37
38
39
40
41
42
43
44
45
46
47
48
49
{
"name": "@hempworks/nftmaker",
"version": "2.2.2",
"main": "build/index.js",
"license": "WTFPL",
"bin": {
"nftmaker": "build/index.js"
},
"files": [
"config.stub",
"build/"
],
"scripts": {
"start": "nodemon --watch src --exec 'tsc' -e ts",
"prepublishOnly": "npm run build",
"build": "tsc",
"test": "jest",
"test:watch": "jest --watch"
},
"author": "Hemp",
"description": "configuration-based NFT image generator",
"homepage": "/~https://github.com/hempworks/nft-maker-js",
"keywords": [
"nft",
"image",
"processing"
],
"dependencies": {
"chalk": "^4.1.2",
"deep-equal": "^2.0.5",
"delay": "^5.0.0",
"listr2": "^3.12.2",
"lodash": "^4.17.21",
"sharp": "^0.29.1",
"yargs": "^17.2.1"
},
"devDependencies": {
"@types/jest": "^27.0.2",
"@types/lodash": "^4.14.174",
"@types/node": "^16.10.1",
"@types/sharp": "^0.29.2",
"jest": "^27.2.5",
"nodemon": "^2.0.13",
"prettier": "^2.4.1",
"ts-jest": "^27.0.5",
"ts-node": "^10.2.1",
"typescript": "^4.4.3"
}
}