-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.13 KB
/
Copy pathpackage.json
File metadata and controls
36 lines (36 loc) · 1.13 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
{
"name": "runtime-keys",
"description": "WinterTC55 Runtime Keys technical report",
"version": "1.0.0",
"private": "true",
"license": "",
"homepage": "",
"bugs": {
"url": "https://github.com/WinterTC55/runtime-keys/issues"
},
"author": {
"name": "Ethan Arrowood",
"email": "ethan@arrowood.dev",
"url": "https://ethanarrowood.com"
},
"contributors": [],
"repository": {
"type": "git",
"url": "https://github.com/WinterTC55/runtime-keys.git"
},
"scripts": {
"prebuild": "rm -rf out && mkdir -p out",
"build": "node build.mjs && ecmarkup spec-injected.html out/index.html",
"watch": "concurrently 'node --watch-path=./runtime-keys.json --watch-path=./spec.html build.mjs' 'ecmarkup --watch --verbose --lint-spec spec-injected.html out/index.html'",
"web": "npm run build -- --assets external --assets-dir out",
"printable": "npm run web -- --verbose --printable --lint-spec",
"pdf": "npm run printable && prince-books --script ./node_modules/ecmarkup/js/print.js out/index.html -o out/TR-runtime-keys.pdf"
},
"devDependencies": {
"concurrently": "9.2.1",
"ecmarkup": "24.1.0"
},
"engines": {
"node": ">= 24"
}
}