build: use pnpm + shell scripts to build project

This commit is contained in:
retrozinndev
2025-08-06 16:38:39 -03:00
parent 0e3a00e31a
commit e8e42f7786
8 changed files with 49 additions and 19 deletions
+14
View File
@@ -0,0 +1,14 @@
{
"$schema": "https://www.schemastore.org/package.json",
"name": "colorshell",
"packageManager": "pnpm@10.12.1",
"scripts": {
"types": "sh ./scripts/types.sh",
"dev": "pnpm build && pnpm start",
"start": "sh ./scripts/start.sh",
"build": "sh ./scripts/build.sh"
},
"devDependencies": {
"ags": "link:../../../../usr/share/ags/js"
}
}