mirror of
https://github.com/daylinmorgan/nimpkgs.git
synced 2024-11-09 21:43:15 -06:00
25 lines
819 B
JSON
25 lines
819 B
JSON
{
|
|
"scripts": {
|
|
"dev": "concurrently npm:server npm:uno:dev npm:watch",
|
|
"server": "http-server ./site",
|
|
"watch": "nim watch",
|
|
"build": "pnpm run uno:prd && pnpm run minify",
|
|
"minify": "esbuild --minify --outdir=site --allow-overwrite site/nimpkgs.js site/uno.css",
|
|
"uno:dev": "unocss \"./site/**/*.html\" \"./src/**/*.nim\" --out-file site/uno.css -w",
|
|
"uno:prd": "unocss \"./site/**/*.html\" \"./src/**/*.nim\" --out-file site/uno.css"
|
|
},
|
|
"author": "Daylin Morgan",
|
|
"license": "MIT",
|
|
"dependencies": {
|
|
"@catppuccin/palette": "^0.2.0",
|
|
"@types/promise-fs": "^2.1.5",
|
|
"@unocss/cli": "^0.57.3",
|
|
"@unocss/reset": "^0.57.3",
|
|
"unocss": "^0.57.3"
|
|
},
|
|
"devDependencies": {
|
|
"concurrently": "^8.2.2",
|
|
"esbuild": "^0.19.5",
|
|
"http-server": "^14.1.1"
|
|
}
|
|
}
|