-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 1.94 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": "cubething2",
"version": "1.0.0",
"main": "index.js",
"type": "module",
"module": "esnext",
"scripts": {
"start": "bun ./src/server/index.ts",
"dev": "./scripts/dev.sh",
"bundle": "./scripts/bundle.sh",
"lint": "bunx eslint .; bunx tsc --noEmit",
"format": "bunx prettier -c .",
"headers": "bun scripts/headers.ts",
"prepare": "husky || true",
"sass": "bunx sass --source-map --embed-source-map --quiet-deps -s compressed --quiet-deps src/static/styles/:www/styles",
"tailwind": "bunx tailwindcss -i ./src/static/styles/index.css -o ./www/styles/index.css",
"dist": "./scripts/dist.sh",
"render": "bun ./scripts/render/render.ts",
"clean": "rm -rf build/ www/"
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"devDependencies": {
"@eslint/js": "^9.9.0",
"@types/eslint__js": "^8.42.3",
"@types/node": "^22.3.0",
"esbuild": "^0.23.0",
"eslint": "^9.9.0",
"glob": "^11.0.0",
"husky": "^9.1.4",
"prettier": "^3.3.3",
"prettier-plugin-latex": "^2.0.1",
"tailwindcss": "^3.4.14",
"typescript": "^5.5.4",
"typescript-eslint": "^8.1.0",
"watcher": "^2.3.1"
},
"dependencies": {
"@fastify/static": "^7.0.4",
"@fastify/websocket": "^10.0.1",
"@preact/signals": "^1.3.0",
"@types/bun": "^1.1.8",
"@types/content-disposition": "^0.5.8",
"@types/qs": "^6.9.15",
"ansi-up": "^1.0.0",
"commander": "^12.1.0",
"content-disposition": "^0.5.4",
"fastify": "^4.28.1",
"globby": "^14.0.2",
"htm": "^3.1.1",
"latex.css": "^1.11.0",
"marked": "^14.0.0",
"marked-code-preview": "^1.3.6",
"marked-footnote": "^1.2.2",
"marked-katex-extension": "^5.1.1",
"mime": "^4.0.4",
"pino": "^9.3.2",
"pino-pretty": "^11.2.2",
"preact": "^10.24.3",
"preact-iso": "^2.7.0",
"qs": "^6.13.0",
"sass": "^1.82.0",
"three": "^0.167.1",
"yaml": "^2.6.1"
}
}