-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
24 lines (24 loc) · 972 Bytes
/
Copy pathpackage.json
File metadata and controls
24 lines (24 loc) · 972 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{
"name": "diff",
"version": "1.0.0",
"description": "DayZ Scripts documentation: a custom generator for the DayZ Enforce Script sources",
"private": true,
"type": "module",
"engines": {
"node": ">=20"
},
"scripts": {
"fetch": "node src/fetch.js",
"sync:release-notes": "node src/sync-release-notes.js",
"parse": "node src/parse-all.js",
"generate": "node src/generate/index.js",
"generate:doxygen-redirects": "node src/generate/doxygen-map.js",
"generate:latest": "BUILD_VERSIONS=1 node src/generate/index.js",
"generate:verify": "BUILD_VERSIONS=6 GENERATE_VERIFY=1 node src/generate/index.js",
"build": "node src/fetch.js && node src/parse-all.js && node src/generate/index.js",
"test": "node --test 'test/*.test.js'",
"dev": "node --watch --watch-preserve-output --watch-path=src --watch-path=site --watch-path=data/release-notes.json src/dev.js",
"preview": "node src/serve.js"
},
"license": "MIT"
}