-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
131 lines (131 loc) · 5.33 KB
/
package.json
File metadata and controls
131 lines (131 loc) · 5.33 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
{
"name": "protolabs-studio",
"version": "0.107.0",
"private": true,
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/protoLabsAI/protoMaker.git"
},
"homepage": "https://protolabs.studio",
"bugs": {
"url": "https://github.com/protoLabsAI/protoMaker/issues"
},
"packageManager": "npm@10.9.3",
"engines": {
"node": ">=22.0.0 <23.0.0"
},
"workspaces": [
"apps/*",
"libs/*",
"packages/*"
],
"scripts": {
"postinstall": "node -e \"const fs=require('fs');if(process.platform==='darwin'){['darwin-arm64','darwin-x64'].forEach(a=>{const p='node_modules/node-pty/prebuilds/'+a+'/spawn-helper';if(fs.existsSync(p))fs.chmodSync(p,0o755)})}\" && node scripts/fix-lockfile-urls.mjs",
"fix:lockfile": "node scripts/fix-lockfile-urls.mjs",
"dev": "node start-automaker.mjs",
"start": "node start-automaker.mjs --production",
"_dev:web": "npm run dev --workspace=apps/ui",
"_dev:server": "npm run dev --workspace=apps/server",
"dev:web": "npm run build:packages && npm run _dev:web",
"dev:server": "npm run build:packages && npm run _dev:server",
"dev:headless": "npm run build:server && npm run start:headless --workspace=apps/server",
"dev:headless:watch": "bash scripts/infra/dev-server-watcher.sh",
"preview:web": "npm run build:packages && npm run build --workspace=apps/ui && npm run preview --workspace=apps/ui -- --port 4173",
"dev:docker": "docker compose up",
"dev:docker:rebuild": "docker compose build --no-cache && docker compose up",
"dev:full": "npm run build:packages && concurrently \"npm run _dev:server\" \"npm run _dev:web\"",
"build": "turbo run build",
"build:libs": "turbo run build --filter=\"./libs/*\"",
"build:packages": "turbo run build --filter=\"./libs/*\" --filter=\"./packages/mcp-server\" --filter=\"./packages/setup-cli\"",
"build:server": "npm run build:packages && npm run build --workspace=apps/server",
"lint": "turbo run lint",
"lint:ui": "npm run lint --workspace=apps/ui",
"lint:server": "npm run lint --workspace=apps/server",
"test": "npm run test --workspace=apps/ui",
"test:headed": "npm run test:headed --workspace=apps/ui",
"test:ui": "npm run test --workspace=apps/ui -- --ui",
"test:packages": "vitest run --project='!server'",
"test:server": "vitest run --project=server",
"test:server:coverage": "vitest run --project=server --coverage",
"test:unit": "vitest run",
"test:unit:watch": "vitest",
"test:all": "vitest run",
"lint:lockfile": "node scripts/lint-lockfile.mjs",
"generate:org-docs": "tsx scripts/generate-org-docs.ts",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs",
"format": "prettier --ignore-path .prettierignore --write .",
"format:check": "prettier --ignore-path .prettierignore --check .",
"typecheck": "turbo run typecheck",
"rebuild": "rm -rf node_modules apps/*/node_modules libs/*/node_modules && npm install",
"prepare": "husky && npm run build:packages",
"plugin:reload": "claude plugin uninstall protolabs && claude plugin install protolabs",
"changeset": "changeset",
"changeset:version": "changeset version",
"changeset:publish": "changeset publish",
"changeset:status": "changeset status",
"release:prepare": "node scripts/prepare-release-changeset.mjs",
"stats:generate": "node site/scripts/generate-stats.mjs && node site/scripts/generate-changelog.mjs && node site/scripts/generate-roadmap.mjs",
"stats:generate:full": "node site/scripts/generate-stats.mjs --with-ledger && node site/scripts/generate-changelog.mjs && node site/scripts/generate-roadmap.mjs"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,mts,cts,json,css,md,html,yml,yaml}": [
"prettier --ignore-path .prettierignore --write"
],
"*.{ts,tsx}": [
"eslint --fix"
]
},
"dependencies": {
"@anthropic-ai/claude-agent-sdk": "^0.2.36",
"@modelcontextprotocol/sdk": "^1.26.0",
"@openai/codex-sdk": "^0.98.0",
"@sentry/node": "^8.47.0",
"@sentry/types": "^8.55.0",
"@sentry/vite-plugin": "^5.1.0",
"@types/dagre": "^0.7.53",
"concurrently": "^9.2.1",
"cross-spawn": "7.0.6",
"dagre": "^0.8.5",
"langsmith": "0.4.12",
"rehype-sanitize": "6.0.0",
"tree-kill": "1.2.2"
},
"devDependencies": {
"@changesets/cli": "^2.29.8",
"@commitlint/cli": "^20.4.2",
"@commitlint/config-conventional": "^20.4.2",
"chromatic": "^11.0.0",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-simple-import-sort": "^12.1.1",
"husky": "9.1.7",
"lint-staged": "16.2.7",
"prettier": "3.7.4",
"tsx": "^4.21.0",
"turbo": "^2",
"typescript-eslint": "^8.50.0",
"vitepress": "^1.6.4",
"vitest": "4.0.16"
},
"optionalDependencies": {
"@esbuild/linux-x64": "0.27.3",
"@rollup/rollup-linux-x64-gnu": "4.59.0"
},
"overrides": {
"minimatch": "^10.0.1",
"undici": "6.23.0",
"lodash-es": "4.17.23",
"prismjs": "1.30.0",
"langsmith": "0.4.12",
"fast-xml-parser": "5.3.7",
"eslint": "9.39.2",
"@typescript-eslint/utils": "8.50.0",
"@typescript-eslint/eslint-plugin": "8.50.0",
"@typescript-eslint/parser": "8.50.0",
"@typescript-eslint/typescript-estree": "8.50.0",
"commander": "14.0.3"
}
}