-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.25 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
50
{
"name": "vox2sprite",
"version": "0.4.0",
"description": "A small tool to render voxel models to pixel art spritesheets",
"keywords": [
"voxels",
"pixel art",
"rendering"
],
"license": "MIT",
"author": "Dmitry Egorov <mail@degorov.com>",
"engines": {
"node": ">=12.0.0"
},
"bin": "./bin/vox2sprite.js",
"scripts": {
"build": "rimraf bin/* && tsc",
"start": "node ./bin/vox2sprite.js",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/degorov/vox2sprite.git"
},
"bugs": {
"url": "https://github.com/degorov/vox2sprite/issues"
},
"homepage": "https://github.com/degorov/vox2sprite#readme",
"devDependencies": {
"@tsconfig/node12": "^1.0.9",
"@types/minimist": "^1.2.2",
"@types/node": "^12.12.6",
"@types/pngjs": "^6.0.1",
"@typescript-eslint/eslint-plugin": "^4.32.0",
"@typescript-eslint/parser": "^4.32.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-jest": "^24.5.0",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^27.2.4",
"prettier": "^2.4.1",
"rimraf": "^3.0.2",
"typescript": "^4.4.3"
},
"dependencies": {
"hsluv": "^0.1.0",
"minimist": "^1.2.5",
"pngjs": "^6.0.0"
}
}