This repository was archived by the owner on Feb 17, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.42 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1.42 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
36
37
{
"name": "demo-islands",
"version": "0.1.0",
"description": "An islands of interactivity demo using Go, Templ, HTMX, Lit, Shoelace and Tailwind",
"type": "module",
"scripts": {
"build:css": "postcss ./server/input.tw.css -o ./server/public/dist.css",
"build:components": "bun build --minify --outfile ./server/public/components.js ./server/components/index.ts",
"build:ts": "bun build --minify --outfile ./server/public/dist.js ./server/input.ts",
"lint:ts": "bunx tsc --noEmit && eslint .",
"download:icon": "curl --fail -o ./server/public/assets/icons/$ICON.svg https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/icons/$ICON.svg && echo \"Added to ./server/public/assets/icons/$ICON.svg\""
},
"author": "Roman Scharkov <roman.scharkov@gmail.com>",
"license": "MIT",
"devDependencies": {
"@eslint/js": "^9.31.0",
"@shoelace-style/shoelace": "^2.20.1",
"@types/alpinejs": "^3.13.11",
"@types/eslint__js": "^8.42.3",
"@types/node": "^22.16.5",
"@typescript-eslint/eslint-plugin": "^8.38.0",
"@typescript-eslint/parser": "^8.38.0",
"alpinejs": "^3.14.9",
"autoprefixer": "^10.4.21",
"bun": "1.2.0",
"cssnano": "^7.1.0",
"eslint": "^9.31.0",
"globals": "^15.15.0",
"htmx.org": "^1.9.12",
"lit": "^3.3.1",
"postcss": "^8.5.6",
"postcss-cli": "^11.0.1",
"tailwindcss": "^3.4.17",
"typescript": "^5.8.3",
"typescript-eslint": "^8.38.0"
}
}