-
Notifications
You must be signed in to change notification settings - Fork 61
/
package.json
68 lines (68 loc) · 1.91 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
{
"name": "parchment",
"version": "2024.1.0",
"description": "Parchment Interactive Fiction Player",
"repository": "curiousdannii/parchment",
"keywords": [
"interactive-fiction"
],
"author": "Dannii Willis <curiousdannii@gmail.com>",
"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.6.0",
"fflate": "^0.8.1",
"file-saver": "^2.0.5",
"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/eslint-plugin": "~6.7.0",
"@typescript-eslint/parser": "~6.7.0",
"esbuild": "^0.19.0",
"esbuild-svelte": "^0.8.1",
"eslint": "^8.3.0",
"eslint-plugin-compat": "^4.0.0",
"minimist": "^1.2.6",
"regtest-html": "^0.1.3",
"svelte": "^4.2.18",
"svelte-preprocess": "^6.0.2",
"typescript": "~5.2.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/",
"prepare": "./build.js",
"start": "./build.js --serve",
"test": "./tests/runtests.sh",
"tsc-check": "tsc --noEmit"
},
"browserslist": [
"> 0.2% and supports es6-module",
"last 2 versions and supports es6-module",
"Firefox ESR",
"not dead"
],
"browser": {
"fs": false,
"path": false
}
}