loopshouse 0.1.1 → 0.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +72 -132
- package/SKILL.md +110 -125
- package/dist/loops.js +39488 -45572
- package/package.json +12 -9
package/package.json
CHANGED
|
@@ -1,13 +1,9 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "loopshouse",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.2.0",
|
|
4
4
|
"type": "module",
|
|
5
|
-
"description": "Loops House CLI — manage hackathon projects, ideate with AI, and submit from your terminal or AI agent",
|
|
5
|
+
"description": "Loops House CLI — manage hackathon projects, ideate with AI, query sponsor knowledge graphs, and submit from your terminal or AI agent",
|
|
6
6
|
"license": "MIT",
|
|
7
|
-
"repository": {
|
|
8
|
-
"type": "git",
|
|
9
|
-
"directory": "skill"
|
|
10
|
-
},
|
|
11
7
|
"bin": {
|
|
12
8
|
"loops": "./dist/loops.js"
|
|
13
9
|
},
|
|
@@ -21,11 +17,18 @@
|
|
|
21
17
|
},
|
|
22
18
|
"scripts": {
|
|
23
19
|
"dev": "bun run bin/loops.ts",
|
|
24
|
-
"build": "bun build bin/loops.ts --outdir dist --target node && node -e \"const fs=require('fs');const f='dist/loops.js';
|
|
20
|
+
"build": "bun build bin/loops.ts --outdir dist --target node && node -e \"const fs=require('fs');const f='dist/loops.js';let c=fs.readFileSync(f,'utf8').replace(/^#!.*\\n/,'');fs.writeFileSync(f,'#!/usr/bin/env node\\n'+c);fs.chmodSync(f,0o755)\"",
|
|
21
|
+
"typecheck": "tsc --noEmit",
|
|
25
22
|
"prepublishOnly": "bun run build"
|
|
26
23
|
},
|
|
27
24
|
"dependencies": {
|
|
28
|
-
"
|
|
29
|
-
"@supabase/supabase-js": "^2.
|
|
25
|
+
"@clack/prompts": "^1.5.1",
|
|
26
|
+
"@supabase/supabase-js": "^2.106.1",
|
|
27
|
+
"incur": "^0.4.8",
|
|
28
|
+
"picocolors": "^1.1.1"
|
|
29
|
+
},
|
|
30
|
+
"devDependencies": {
|
|
31
|
+
"@types/node": "^20",
|
|
32
|
+
"typescript": "^5"
|
|
30
33
|
}
|
|
31
34
|
}
|