32 lines
850 B
JSON
32 lines
850 B
JSON
{
|
|
"name": "starbase-80",
|
|
"displayName": "Starbase 80",
|
|
"homepage": "https://www.starbase80.dev/",
|
|
"repository": {
|
|
"url": "https://github.com/notclickable-jordan/starbase-80/"
|
|
},
|
|
"version": "1.4.0",
|
|
"type": "commonjs",
|
|
"scripts": {
|
|
"build": "tsc && node ./dist/static.js && npm run html && npm run tailwind",
|
|
"html": "html-minifier --remove-comments --collapse-whitespace --input-dir ./dist --output-dir ./dist --file-ext html",
|
|
"tailwind": "npx tailwindcss -i ./src/tailwind.css -o ./dist/main.css"
|
|
},
|
|
"dependencies": {
|
|
"@types/node": "^20.10.4",
|
|
"html-minifier": "^4.0.0",
|
|
"prettier": "^3.1.1",
|
|
"tailwindcss": "^3.3.6",
|
|
"typescript": "^5.3.3"
|
|
},
|
|
"prettier": {
|
|
"arrowParens": "avoid",
|
|
"jsxBracketSameLine": true,
|
|
"printWidth": 120,
|
|
"semi": true,
|
|
"tabWidth": 4,
|
|
"trailingComma": "es5",
|
|
"useTabs": true
|
|
}
|
|
}
|