-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 2.71 KB
/
Copy pathpackage.json
File metadata and controls
63 lines (63 loc) · 2.71 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
55
56
57
58
59
60
61
62
63
{
"name": "burnlist",
"version": "0.0.2",
"type": "module",
"description": "An agent skill and local dashboard for Burnlist planning, execution, and progress tracking.",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"bin": {
"burnlist": "bin/burnlist.mjs"
},
"exports": {
"./oven-events": "./src/events/oven-events.mjs",
"./differential-testing": "./ovens/differential-testing/engine/adapter-sdk.mjs",
"./differential-testing/contract": "./ovens/differential-testing/engine/contract.mjs",
"./differential-testing/transport": "./ovens/differential-testing/engine/transport.mjs"
},
"files": [
"bin/",
"src/",
"skills/",
"ovens/",
"dashboard/dist/",
"scripts/register-skills.mjs",
"scripts/unregister-skills.mjs",
"!**/*.test.mjs",
"!**/*.test.js"
],
"scripts": {
"build:dashboard": "vite build --config dashboard/vite.config.mjs",
"storybook": "storybook dev -p 6006 -c dashboard/.storybook --no-open",
"build:storybook": "storybook build -c dashboard/.storybook -o .local/storybook",
"test:differential-testing": "node --test ovens/differential-testing/engine/adapter-sdk.test.mjs ovens/differential-testing/engine/contract.test.mjs ovens/differential-testing/engine/data-contract.test.mjs ovens/differential-testing/engine/handler.test.mjs ovens/differential-testing/engine/query-projection-cache.test.mjs ovens/differential-testing/engine/transport-renderer.test.mjs ovens/differential-testing/engine/transport-server.test.mjs",
"test:model-lab": "node --test ovens/model-lab/engine/model-lab-contract.test.mjs ovens/model-lab/engine/model-lab-handler.test.mjs",
"test:performance-tracing": "node --test ovens/performance-tracing/contract.test.mjs",
"test:visual-parity": "node --test ovens/visual-parity/contract.test.mjs ovens/visual-parity/handler.test.mjs ovens/visual-parity/handler-cache-lifecycle.test.mjs",
"verify": "node scripts/verify.mjs",
"verify:clean": "node scripts/verify-clean.mjs",
"verify:package": "node scripts/verify-package.mjs",
"test:global-install": "node scripts/smoke-global-install.mjs",
"prepack": "npm run build:dashboard && npm run verify",
"postinstall": "node scripts/register-skills.mjs"
},
"engines": {
"node": ">=18"
},
"devDependencies": {
"@radix-ui/react-slot": "^1.2.4",
"@radix-ui/react-tabs": "^1.1.13",
"@storybook/addon-a11y": "^10.5.3",
"@storybook/addon-docs": "^10.5.3",
"@storybook/react-vite": "^10.5.3",
"@vitejs/plugin-react": "^4.3.4",
"esbuild": "^0.25.12",
"lucide-react": "^0.468.0",
"radix-ui": "^1.6.2",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"storybook": "^10.5.3",
"vite": "^6.1.0"
}
}