-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 2.05 KB
/
Copy pathpackage.json
File metadata and controls
54 lines (54 loc) · 2.05 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
48
49
50
51
52
53
54
{
"name": "ctrlc",
"version": "0.1.0",
"private": true,
"description": "CtrlC: React section packs + recreation guidance (SectionPack dual export). Not full website creation; not HTML scraping.",
"license": "MIT",
"keywords": [
"ctrlc",
"sectionpack",
"react",
"nextjs",
"ui-sections",
"dual-export",
"recreation-guidance",
"design-system",
"agent",
"mcp"
],
"engines": {
"node": ">=20"
},
"workspaces": [
"packages/*",
"examples/*"
],
"scripts": {
"build": "npm run build -w @ctrlc/core && npm run build -w @ctrlc/react && npm run build -w @ctrlc/next && npm run build -w @ctrlc/capture && npm run build -w @ctrlc/cli",
"typecheck": "npm run typecheck --workspaces --if-present",
"test": "npm run test -w @ctrlc/core && npm run test -w @ctrlc/cli && npm run test -w @ctrlc/capture",
"test:mcp": "npm run test -w @ctrlc/mcp",
"test:cli": "npm run test -w @ctrlc/cli",
"validate": "npm run validate -w @ctrlc/core",
"validate:demo": "node scripts/validate-packs.mjs",
"ctrlc": "node packages/cli/bin/ctrlc.mjs",
"watch": "node packages/cli/bin/ctrlc.mjs watch --cwd examples/next-demo",
"snapshot": "node packages/cli/bin/ctrlc.mjs snapshot --cwd examples/next-demo",
"library": "node packages/cli/bin/ctrlc.mjs library --cwd examples/next-demo",
"check:drift": "node scripts/check-pack-drift.mjs --cwd examples/next-demo",
"create": "node scripts/create-ctrlc-app.mjs",
"init-clone": "node packages/cli/bin/ctrlc.mjs init-clone",
"dev:demo": "npm run dev -w @ctrlc/next-demo",
"build:demo": "npm run build -w @ctrlc/next-demo",
"docker:demo": "docker compose up --build demo",
"eval:northline": "node scripts/eval/score-case.mjs --case docs/eval/cases/northline-demo/case.json --cwd examples/next-demo --out docs/eval/results/northline-demo.json",
"eval:aggregate": "node scripts/eval/aggregate-results.mjs"
},
"bin": {
"ctrlc": "./packages/cli/bin/ctrlc.mjs"
},
"devDependencies": {
"tsx": "^4.19.3",
"typescript": "^5.8.2"
}
}