-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1.15 KB
/
package.json
File metadata and controls
35 lines (35 loc) · 1.15 KB
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
{
"name": "sids.in",
"type": "module",
"private": true,
"scripts": {
"build:css": "tailwindcss -i ./styles/input.css -o ./public/css/styles.css --minify",
"build:manifest": "bun run scripts/build-manifest.ts",
"build": "bun run build:css && bun run build:manifest",
"dev:css": "tailwindcss -i ./styles/input.css -o ./public/css/styles.css --watch",
"dev:worker": "bun run build:manifest && bunx wrangler dev --ip 0.0.0.0",
"dev": "concurrently \"bun run dev:css\" \"bun run dev:worker\"",
"deploy": "bun run build && bunx wrangler deploy",
"types": "bunx wrangler types",
"test": "bun test",
"typecheck": "tsc --noEmit -p tsconfig.json && tsc --noEmit -p tsconfig.bun.json"
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20251229.0",
"@tailwindcss/typography": "^0.5.19",
"@types/bun": "latest",
"autoprefixer": "^10.4.23",
"concurrently": "^9.2.1",
"postcss": "^8.5.6",
"tailwindcss": "3",
"wrangler": "^4.54.0"
},
"peerDependencies": {
"typescript": "^5"
},
"dependencies": {
"front-matter": "^4.0.2",
"marked": "^17.0.1",
"marked-footnote": "^1.4.0"
}
}