Files
Cursor Agent 5fe6469d4a Separate Loop Library website code into loop-library/
Move the website (site shell, Worker, scripts, audits) under a dedicated
loop-library/ directory so it is clearly separated from the installable Loopy
skill, which stays in skills/loopy/. Update CI, .gitignore, the repository
check script, and maintainer docs to the new paths.

Co-authored-by: mberman84 <mberman84@users.noreply.github.com>
2026-06-27 14:45:53 +00:00

19 lines
729 B
JSON

{
"name": "loop-library-form-gateway",
"private": true,
"type": "module",
"scripts": {
"check": "node --check src/index.js && node --check src/auth-votes.js && node --check src/vote-store.js && node --check bin/publish-loop.mjs && node --check bin/import-bootstrap.mjs && node --check bin/export-catalog.mjs && node --check bin/restore-catalog.mjs && node --test",
"deploy": "wrangler deploy",
"dev": "wrangler dev",
"loop:publish": "node bin/publish-loop.mjs",
"loops:import": "node bin/import-bootstrap.mjs",
"loops:export": "node bin/export-catalog.mjs",
"loops:restore": "node bin/restore-catalog.mjs",
"test": "node --test"
},
"devDependencies": {
"wrangler": "4.103.0"
}
}