-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 884 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 884 Bytes
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
{
"name": "mcp-css-first-monorepo",
"private": true,
"description": "Monorepo for MCP CSS First - intelligent CSS suggestions server",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/luko248/css-first.git"
},
"workspaces": ["packages/*"],
"scripts": {
"build": "bun run build:core && bun run build:cli",
"build:core": "cd packages/core && bun run build",
"build:cli": "cd packages/cli && bun run build",
"dev": "bun run --filter '*' dev",
"typecheck": "bun run --filter '*' typecheck",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"deploy:worker": "cd packages/worker && bun run deploy",
"publish:cli": "cd packages/cli && npm publish"
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"eslint": "^9.39.2",
"typescript": "^5.9.3",
"typescript-eslint": "^8.53.0"
}
}