forked from pollinations/pollinations
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 1.43 KB
/
Copy pathpackage.json
File metadata and controls
32 lines (32 loc) · 1.43 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
{
"name": "pollinations-monorepo",
"private": true,
"workspaces": [
"shared",
"enter.pollinations.ai",
"gen.pollinations.ai",
"packages/sdk",
"packages/ui",
"apps/react",
"operations/economics/web"
],
"scripts": {
"install:all": "npm install && npm install --prefix packages/sdk && npm install --prefix packages/mcp",
"install:services": "npm install",
"install:packages": "npm install --prefix packages/sdk && npm install --prefix packages/mcp",
"build:sdk": "npm run build --prefix packages/sdk",
"dev": "concurrently --kill-others-on-fail --prefix '[{name}]' --names 'enter,gen' -c 'auto' 'npm run dev --workspace pollinations-enter' 'npm run dev --workspace pollinations-gen'",
"dev:enter": "npm run dev --workspace pollinations-enter",
"dev:gen": "npm run dev --workspace pollinations-gen",
"dev:gen-stack": "concurrently --kill-others-on-fail --prefix '[{name}]' --names 'enter-worker,gen' -c 'auto' 'npm run dev:worker --workspace pollinations-enter' 'sleep 12 && npm run dev --workspace pollinations-gen'",
"format:changed": "git diff --diff-filter=d --name-only origin/main | grep -E '\\.(js|ts|jsx|tsx|json|jsonc)$' | grep -v -E '(node_modules|dist|build|\\.next|\\.cache|out)/' | xargs npx biome check --write"
},
"devDependencies": {
"@biomejs/biome": "^2.3.10",
"concurrently": "^9.2.1"
},
"dependencies": {
"wrangler": "^4.59.1",
"zod": "^4.3.5"
}
}