-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.59 KB
/
Copy pathpackage.json
File metadata and controls
66 lines (66 loc) · 1.59 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
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "dfhack-remote-node",
"version": "2.0.1",
"description": "Node client for the DFHack Remote RPC protocol (protobuf over TCP)",
"type": "module",
"engines": {
"node": ">=20"
},
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"files": [
"dist",
"build/proto.json",
"proto",
"README.md",
"LICENSE.md"
],
"scripts": {
"build": "npm run gen-proto && tsup",
"gen-proto": "pbjs proto/*.proto -t json -o build/proto.json",
"typecheck": "tsc --noEmit",
"lint": "eslint .",
"format": "prettier --write .",
"test": "node scripts/mock-server-test.js",
"spike": "node scripts/m0-spike.js",
"prepare": "npm run build"
},
"keywords": [
"dwarf",
"fortress",
"dfhack",
"remote",
"RemoteFortressReader"
],
"author": "Alexander Olvera",
"license": "ISC",
"dependencies": {
"protobufjs": "^7.4.0"
},
"devDependencies": {
"@eslint/js": "^9.0.0",
"@types/node": "^24.0.0",
"eslint": "^9.0.0",
"eslint-config-prettier": "^10.0.0",
"prettier": "^3.0.0",
"protobufjs-cli": "^1.1.3",
"tsup": "^8.0.0",
"typescript": "^5.6.0",
"typescript-eslint": "^8.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/alexanderolvera/dfhack-remote-node.git"
},
"homepage": "https://github.com/alexanderolvera/dfhack-remote-node#readme",
"bugs": {
"url": "https://github.com/alexanderolvera/dfhack-remote-node/issues"
}
}