27 lines
823 B
JSON
27 lines
823 B
JSON
{
|
|
"name": "aethera",
|
|
"private": true,
|
|
"scripts": {
|
|
"dev": "bun build src/main.ts --outdir public/dist --target browser --watch & tailwindcss -i styles.css -o public/dist/styles.css --watch",
|
|
"build": "bun build src/main.ts --outdir public/dist --target browser && tailwindcss -i styles.css -o public/dist/styles.css --minify",
|
|
"lint": "eslint ./src/**"
|
|
},
|
|
"devDependencies": {
|
|
"@tailwindcss/typography": "^0.5.19",
|
|
"@types/alpinejs": "^3.13.11",
|
|
"@types/bun": "latest",
|
|
"@typescript-eslint/eslint-plugin": "^8.52.0",
|
|
"@typescript-eslint/parser": "^8.52.0",
|
|
"eslint": "^9.39.2"
|
|
},
|
|
"peerDependencies": {
|
|
"typescript": "^5"
|
|
},
|
|
"dependencies": {
|
|
"alpinejs": "^3.15.3",
|
|
"highlight.js": "^11.11.1",
|
|
"marked": "^17.0.1",
|
|
"marked-highlight": "^2.2.3"
|
|
}
|
|
}
|