-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 982 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 982 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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
{
"name": "paperthin",
"version": "1.2.0",
"description": "The default proofing format for Twine 2. Icon designed by <a href=\"http://www.thenounproject.com/Simon Child\">Simon Child</a> from the <a href=\"http://www.thenounproject.com\">Noun Project</a>",
"author": "Chris Klimas <chris@twinery.org>",
"license": "ZLib/Libpng",
"keywords": [
"twine",
"twine2",
"story format",
"interactive fiction"
],
"main": "utils/compile.js",
"repository": {
"type": "git",
"url": "git+https://github.com/klembot/paperthin"
},
"scripts": {
"build": "node utils/compile.js",
"test": "node --test test/*.test.js",
"all": "npm run test && npm run build"
},
"type": "module",
"dependencies": {
"rimraf": "^6.0.1"
},
"engines": {
"node": ">=20.0.0"
},
"devEngines": {
"runtime": {
"name": "node",
"onFail": "error"
},
"packageManager": {
"name": "npm",
"onFail": "error"
}
}
}