-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.02 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
{
"name": "@hornwitser/factorio-greyroom",
"version": "0.0.1",
"description": "Reimplementation of Factorio data structures with a focus on the protocol.",
"files": [
"dist/**/*.js",
"dist/**/*.d.ts",
"README.md"
],
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"scripts": {
"prepare": "tsc --build",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Hornwitser/factorio-greyroom.git"
},
"keywords": [
"factorio",
"client"
],
"author": "Hornwitser",
"license": "UNLICENSED",
"bugs": {
"url": "https://github.com/Hornwitser/factorio-greyroom/issues"
},
"homepage": "https://github.com/Hornwitser/factorio-greyroom#readme",
"devDependencies": {
"@clusterio/master": "*",
"@clusterio/slave": "*",
"@types/jest": "^27.0.1",
"@types/node": "^16.7.1",
"jest": "^27.0.6",
"ts-jest": "^27.0.5",
"ts-node": "^10.2.1",
"typescript": "^4.7.4"
},
"publishConfig": {
"access": "public"
}
}