-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 2.83 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 2.83 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
64
{
"name": "@incubrain/foundry-workspace",
"version": "0.6.0",
"private": true,
"type": "module",
"scripts": {
"dev": "pnpm run --filter @incubrain/foundry dev",
"build": "pnpm run --filter @incubrain/foundry build",
"dev:web": "nuxt dev examples/starter/web",
"dev:docs": "nuxt dev examples/starter/docs",
"dev:foundry": "nuxt dev examples/foundry",
"dev:ae": "nuxt dev examples/astronera",
"build:ae": "nuxt build examples/astronera > build.log 2>&1",
"build:foundry": "nuxt build examples/foundry > build.log 2>&1",
"build:ci": "node scripts/build-diagnostic.mjs",
"build:ci:layer": "node scripts/build-diagnostic.mjs layer",
"build:ci:astronera": "node scripts/build-diagnostic.mjs examples/astronera",
"build:ci:foundry": "node scripts/build-diagnostic.mjs examples/foundry",
"generate": "pnpm -r generate",
"preview": "pnpm --filter web preview",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"ship": "git push",
"skills": "bash scripts/install-skills.sh",
"docker": "docker build --memory=4g -f examples/astronera/Dockerfile -t astronera . && docker run --env-file .env --rm -p 3000:3000 astronera",
"repomix": "repomix --ignore='examples,deploy,public,**/public/**,context,**/assets/**,**/decisions/**,.claude,**/content/**/*.{md,yml},apps/docs/**.md'",
"repomix:new": "{ git ls-files --others --exclude-standard; git diff --name-only; git diff --cached --name-only; } | sort -u | repomix --stdin -o repomix-changed.xml",
"typecheck": "nuxt typecheck layer",
"verify": "nuxt prepare layer && pnpm run lint && pnpm run typecheck",
"layer:check": "pnpm pack --dry-run --filter @incubrain/foundry",
"layer:patch": "release-it patch --config .release-it.layer.json",
"layer:bump": "release-it bump --config .release-it.layer.json",
"layer:publish": "cd layer && npm publish --access public",
"cli:check": "pnpm pack --dry-run --filter create-foundry",
"cli:build": "pnpm --filter create-foundry build",
"cli:publish": "cd cli && npm publish --access public",
"kanban": "npx vibe-kanban",
"test": "vitest",
"test:watch": "vitest --watch",
"test:coverage": "vitest --coverage"
},
"dependencies": {
"@nuxt/eslint": "^1.15.1",
"@nuxt/eslint-config": "^1.15.1",
"@release-it/bumper": "^7.0.5",
"@release-it/conventional-changelog": "^10.0.5",
"eslint": "^10.0.3",
"nuxt": "4.3.1",
"release-it": "^19.2.3",
"typescript": "^5.9.3",
"vue-tsc": "^3.2.2"
},
"packageManager": "pnpm@10.28.2",
"devDependencies": {
"@nuxt/test-utils": "^4.0.0",
"@vitest/browser-playwright": "^4.0.18",
"@vitest/coverage-v8": "^4.0.18",
"@vue/test-utils": "^2.4.6",
"eslint-plugin-vuejs-accessibility": "^2.5.0",
"happy-dom": "^20.8.3",
"playwright-core": "^1.58.2",
"vitest": "^4.0.18"
}
}