-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 2.26 KB
/
Copy pathpackage.json
File metadata and controls
41 lines (41 loc) · 2.26 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
{
"name": "atomos",
"version": "1.0.0",
"private": true,
"type": "module",
"packageManager": "pnpm@10.28.2",
"workspaces": [
"packages/*"
],
"scripts": {
"build": "echo \"Skipped recursive build from atomos context as top-level pnpm correctly traverses\"",
"dev": "pnpm -r dev",
"demo": "pnpm -r build && npx http-server packages -p 3002 -o /atomos-structura/canvas.html",
"demo:dev": "start cmd /k \"pnpm --filter @atomos-web/structura dev\" && npx http-server packages -p 4002 -o /atomos-structura/canvas.html",
"demo:dev-lnx": "pnpm --filter @atomos-web/structura dev & npx http-server packages -p 4002 -o /atomos-structura/canvas.html",
"demo:neura": "start cmd /k \"pnpm --filter @atomos-web/structura dev\" && npx http-server packages -p 4002 -o /atomos-structura/demos/test-neura.html",
"demo:neura-lnx": "pnpm --filter @atomos-web/structura dev & npx http-server packages -p 4002 -o /atomos-structura/demos/test-neura.html",
"demo:consumer-simulator": "start cmd /k \"pnpm --filter @atomos-web/structura dev\" && npx http-server packages -p 4002 -o /atomos-structura/demos/test-consumer-simulator.html",
"demo:consumer-simulator-lnx": "pnpm --filter @atomos-web/structura dev & npx http-server packages -p 4002 -o /atomos-structura/demos/test-consumer-simulator.html",
"docs:prime": "pnpm --filter @atomos-web/prime docs",
"test": "pnpm -r test",
"lint": "pnpm -r lint",
"type-check": "pnpm -r type-check",
"clean": "pnpm -r clean",
"deploy:showcase-pages": "cd packages/showcase && pnpm build && cd ../.. && pnpm exec rimraf docs && move packages/showcase/out docs && echo > docs/.nojekyll && copy scripts\\deploy\\404.html docs\\404.html",
"deploy:showcase-pages-lnx": "cd packages/showcase && pnpm build && cd ../.. && pnpm exec rimraf docs && mv packages/showcase/out docs && echo > docs/.nojekyll && cp scripts/deploy/404.html docs/404.html"
},
"devDependencies": {
"@ai-agencee/cli": "^1.4.1",
"@ai-agencee/mcp": "^1.3.5",
"@types/node": "^20.0.0",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"eslint": "^8.0.0",
"npm": "^10.9.8",
"rimraf": "^6.1.3",
"typescript": "^5.3.0",
"vitest": "^1.0.0"
},
"license": "AGPL-3.0-or-later"
}