-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 963 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 963 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
{
"name": "twine-dev-server",
"version": "0.2.4.1",
"module": "index.ts",
"type": "module",
"devDependencies": {
"@eslint/eslintrc": "3.1.0",
"@eslint/js": "9.14.0",
"@types/bun": "1.1.13",
"@types/jsdom": "21.1.7",
"@types/twine-sugarcube": "2.37.1",
"@typescript-eslint/eslint-plugin": "8.13.0",
"@typescript-eslint/parser": "8.13.0",
"concurrently": "9.1.0",
"eslint": "9.14.0",
"prettier": "3.3.3"
},
"peerDependencies": {
"typescript": "^5.0.0"
},
"scripts": {
"dev": "concurrently \"bun run src/lib/scripts/watch.ts\" \"bun --watch index.ts\"",
"decompile": "bun run src/lib/scripts/decompile.ts",
"compile": "bun run src/lib/scripts/compile.ts",
"build": "bun run src/lib/scripts/build.ts",
"lint": "eslint src/**/*.ts",
"pretty": "prettier --write src/**/*.ts"
},
"dependencies": {
"@elysiajs/html": "1.1.1",
"elysia": "1.1.24",
"jsdom": "25.0.1"
}
}