This repository was archived by the owner on Sep 1, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.37 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.37 KB
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
51
52
53
54
{
"name": "factorio-render",
"version": "1.0.0",
"description": "Tool to render Factorio blueprints into static images and videos.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/**"
],
"scripts": {
"dev": "ts-node src/index.ts",
"dev:watch": "ts-node-dev --respawn --no-notify src/index.ts",
"build": "tsc",
"lint": "tslint --project tsconfig.json",
"doc": "typedoc --name factorio-render --readme README.md --out docs/ src/",
"release": "standard-version"
},
"repository": {
"type": "git",
"url": "git+https://github.com/BlooperDB/factorio-render.git"
},
"keywords": [
"factorio",
"render",
"blueprint",
"canvas"
],
"author": "BlooperDB <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/BlooperDB/factorio-render/issues"
},
"homepage": "https://github.com/BlooperDB/factorio-render#readme",
"devDependencies": {
"pre-commit": "^1.2.2",
"standard-version": "^8.0.1",
"ts-node": "^7.0.0",
"ts-node-dev": "^1.0.0-pre.26",
"tslint": "^5.11.0",
"typedoc": "^0.15.0",
"typescript": "^3.0.1"
},
"dependencies": {
"@types/node": "^10.5.5",
"@types/pako": "^1.0.0",
"@types/text-encoding": "0.0.33",
"canvas": "2.0.0-alpha.12",
"pako": "^1.0.6",
"text-encoding": "^0.6.4"
},
"pre-commit": [
"lint"
]
}