Files
self 0a3a91a62a
CI / Test (push) Failing after 17s
feat: add Kobold plugin scaffold
Generate the initial Kobold external plugin with host-backed tests, browser-safe asset bundling, and the MVP PRD under docs/.
2026-05-27 16:19:27 +02:00

14 lines
409 B
JSON

{
"name": "kobold-assets",
"private": true,
"version": "0.1.0",
"scripts": {
"build": "npm run check && mkdir -p ../priv/static && cp -r css/. ../priv/static && esbuild ts/kobold.ts --bundle --target=es2022 --format=iife --outfile=../priv/static/kobold.js",
"check": "tsc --project tsconfig.json --noEmit"
},
"devDependencies": {
"esbuild": "^0.28.0",
"typescript": "^6.0.3"
}
}