mirror of
https://github.com/Forward-Future/loopy.git
synced 2026-09-22 05:33:01 +08:00
5fe6469d4a
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>
19 lines
729 B
JSON
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"
|
|
}
|
|
}
|