-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.17 KB
/
Copy pathpackage.json
File metadata and controls
47 lines (47 loc) · 1.17 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
{
"name": "launchloop",
"version": "0.1.1",
"description": "Open-source launch readiness and product-loop agent for solo software builders.",
"type": "module",
"bin": {
"launchloop": "src/cli.js"
},
"scripts": {
"start": "node src/cli.js",
"build": "node scripts/check-runtime-syntax.js",
"release:local": "node scripts/local-release-gate.js",
"test": "node --test",
"check:example": "node src/cli.js check examples/nextjs-saas",
"brief:example": "node src/cli.js brief examples/nextjs-saas --target codex"
},
"files": [
".env.example",
"README.md",
"SECURITY.md",
"docs/",
"examples/nextjs-saas/.env.example",
"examples/nextjs-saas/.github/",
"examples/nextjs-saas/package.json",
"examples/nextjs-saas/privacy.md",
"examples/nextjs-saas/README.md",
"examples/nextjs-saas/src/",
"examples/nextjs-saas/terms.md",
"examples/nextjs-saas/vercel.json",
"scripts/",
"src/"
],
"engines": {
"node": ">=20"
},
"keywords": [
"indie-hacker",
"launch-readiness",
"ai-agent",
"product-agent",
"micro-saas",
"codex",
"claude-code"
],
"author": "",
"license": "MIT"
}