-
Notifications
You must be signed in to change notification settings - Fork 61
/
Copy pathpackage.json
70 lines (70 loc) · 2.01 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "parchment",
"version": "2025.1.0",
"description": "Parchment Interactive Fiction Player",
"repository": "curiousdannii/parchment",
"keywords": [
"interactive-fiction"
],
"author": "Dannii Willis <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/curiousdannii/parchment/issues"
},
"homepage": "https://github.com/curiousdannii/parchment#readme",
"type": "module",
"dependencies": {
"base32768": "^3.0.1",
"body-scroll-lock": "^4.0.0-beta.0",
"emglken": "^0.7.0",
"fflate": "^0.8.1",
"file-saver": "^2.0.5",
"glkaudio": "file:src/upstream/asyncglk/src/glkaudio/pkg",
"jquery": "^3.7.1",
"js-cookie": "^3.0.1",
"lodash-es": "^4.17.21",
"path-browserify-esm": "^1.0.4",
"pretty-bytes": "^6.1.1"
},
"devDependencies": {
"@types/body-scroll-lock": "^3.1.2",
"@types/file-saver": "^2.0.7",
"@types/jquery": "^3.5.11",
"@types/js-cookie": "^3.0.4",
"@types/lodash-es": "^4.17.5",
"@types/minimist": "^1.2.2",
"@typescript-eslint/parser": "~8.18.0",
"esbuild": "^0.24.0",
"esbuild-svelte": "^0.8.1",
"eslint": "^9.12.0",
"eslint-plugin-compat": "^6.0.0",
"eslint-plugin-svelte": "^2.44.1",
"minimist": "^1.2.6",
"regtest-html": "^0.1.4",
"svelte": "^4.2.19",
"svelte-check": "^4.0.4",
"svelte-preprocess": "^6.0.3",
"typescript": "~5.6.0",
"typescript-eslint": "~8.17.0"
},
"scripts": {
"build": "./build.js",
"check-compat": "tests/check-compat.sh",
"inform7": "tools/package-inform7.sh",
"link-local-emglken": "npm link ./src/upstream/emglken",
"lint": "eslint src/common/**/* src/inform7/ src/iplayif.com/app/src/ src/tools/",
"start": "./build.js --serve",
"svelte-check": "svelte-check",
"test": "./tests/runtests.sh"
},
"browserslist": [
"> 0.2% and supports es6-module",
"last 2 versions and supports es6-module",
"Firefox ESR",
"not dead"
],
"browser": {
"fs": false,
"path": false
}
}