-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
52 lines (52 loc) · 1.86 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
{
"name": "thy-weaver",
"type": "module",
"version": "0.0.0",
"template-version": "0.3.1-beta",
"description": "A starter template for a modern Twine development workflow",
"scripts": {
"dev": "bun cross-env NODE_ENV=development bun .build/run_dev.ts",
"dev:withProd": "bun cross-env NODE_ENV=production bun .build/run_dev.ts",
"build": "bun cross-env NODE_ENV=production bun .build/run_build.ts",
"build:withDev": "bun cross-env NODE_ENV=development bun .build/run_build.ts",
"node:dev": "cross-env NODE_ENV=development tsx .build/run_dev.ts",
"node:dev:withProd": "cross-env NODE_ENV=production tsx .build/run_dev.ts",
"node:build": "cross-env NODE_ENV=production tsx .build/run_build.ts",
"node:build:withDev": "cross-env NODE_ENV=development tsx .build/run_build.ts",
"builderDev": "bun cross-env NODE_ENV=development bun --watch .build/run_dev.ts"
},
"template-author": "greatsquare0",
"license": "MIT",
"template-license": "MIT",
"devDependencies": {
"@hono/node-server": "^1.13.5",
"@hono/node-ws": "^1.0.4",
"@rollup/plugin-node-resolve": "^15.3.0",
"@rollup/plugin-swc": "^0.4.0",
"@rollup/plugin-typescript": "^12.1.1",
"@swc/core": "^1.9.1",
"@types/fs-extra": "^11.0.4",
"@types/twine-sugarcube": "^2.37.1",
"browserslist": "^4.24.2",
"chokidar": "^4.0.1",
"cross-env": "^7.0.3",
"fast-glob": "^3.3.2",
"fs-extra": "^11.2.0",
"hono": "^4.6.9",
"lightningcss": "^1.28.1",
"ora": "^8.1.1",
"picocolors": "^1.1.1",
"postcss": "^8.4.47",
"postcss-import": "^16.1.0",
"postcss-lightningcss": "^1.0.1",
"postcss-loader": "^8.1.1",
"postcss-scss": "^4.0.9",
"rollup": "^4.24.4",
"rollup-plugin-postcss": "^4.0.2",
"sass": "^1.80.6",
"tailwindcss": "^3.4.14",
"tsx": "^4.19.2",
"tweenode": "^0.2.9",
"typescript": "^5.6.3"
}
}