34 lines
1.2 KiB
JSON
34 lines
1.2 KiB
JSON
{
|
|
"name": "mal",
|
|
"private": true,
|
|
"type": "module",
|
|
"scripts": {
|
|
"build:css": "bunx --bun @tailwindcss/cli -i ./static/assets/style.css -o ./dist/tailwind.css",
|
|
"watch:css": "bunx --bun @tailwindcss/cli -i ./static/assets/style.css -o ./dist/tailwind.css --watch",
|
|
"typecheck": "bunx tsc -p tsconfig.json --noEmit",
|
|
"build:assets": "bun run build:css",
|
|
"build:ts": "bash ./scripts/build-ts.sh",
|
|
"format": "bunx oxfmt",
|
|
"format:check": "bunx oxfmt --check",
|
|
"lint": "bun run lint:ts && bun run lint:go",
|
|
"lint:ts": "bunx oxlint --ignore-path .oxlintignore static --tsconfig ./tsconfig.json --type-aware --max-warnings 0",
|
|
"lint:ts:fix": "bunx oxlint --ignore-path .oxlintignore static --tsconfig ./tsconfig.json --type-aware --max-warnings 0 --fix",
|
|
"lint:go": "golangci-lint run ./..."
|
|
},
|
|
"dependencies": {
|
|
"hls.js": "^1.6.16",
|
|
"htmx.org": "1.9.12"
|
|
},
|
|
"devDependencies": {
|
|
"@tailwindcss/cli": "^4.3.0",
|
|
"@types/node": "^24.0.0",
|
|
"jiti": "^2.7.0",
|
|
"lefthook": "^2.1.6",
|
|
"oxfmt": "^0.52.0",
|
|
"oxlint": "^1.67.0",
|
|
"oxlint-tsgolint": "^0.23.0",
|
|
"tailwindcss": "^4.3.0",
|
|
"typescript": "^6.0.3"
|
|
}
|
|
}
|