19 lines
623 B
JSON
19 lines
623 B
JSON
{
|
|
"name": "myanimelist-ui",
|
|
"private": true,
|
|
"scripts": {
|
|
"build:css": "bunx @tailwindcss/cli -i ./static/style.css -o ./dist/tailwind.css",
|
|
"watch:css": "bunx @tailwindcss/cli -i ./static/style.css -o ./dist/tailwind.css --watch",
|
|
"build:ts": "bun build ./static/*.ts --outdir ./dist --target browser",
|
|
"typecheck": "bunx tsc -p tsconfig.json --noEmit",
|
|
"build:assets": "bun run build:css && bun run build:ts"
|
|
},
|
|
"devDependencies": {
|
|
"@tailwindcss/cli": "^4.2.2",
|
|
"@toolwind/anchors": "^1.0.10",
|
|
"lefthook": "^2.1.6",
|
|
"tailwindcss": "^4.2.2",
|
|
"typescript": "^6.0.3"
|
|
}
|
|
}
|