-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.75 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.75 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
{
"name": "plexus-agent-config-monorepo",
"private": true,
"version": "0.0.12",
"description": "Plexus Agent Config: local dashboard for syncing Claude Code, Cursor, Codex, Gemini CLI, and Qwen Code rules, MCP servers, and skills.",
"workspaces": ["apps/*", "packages/*"],
"scripts": {
"build": "npm run build:core && npm run build -w plexus-agent-config-web && npm run build:cli",
"build:core": "npm run build -w plexus-agent-config-core",
"build:cli": "npm run build -w plexus-agent-config",
"dev": "npm run build:core && npm run dev -w plexus-agent-config-web -- -p 7777",
"start": "node packages/cli/dist/bin.js",
"link": "npm run build && cd packages/cli && npm link",
"unlink": "cd packages/cli && npm unlink -g",
"lint": "biome lint .",
"format": "biome format --write .",
"check": "biome check .",
"typecheck": "npm run typecheck --workspaces --if-present",
"test": "npm run test --workspaces --if-present",
"test:core": "npm run test -w plexus-agent-config-core",
"verify": "npm run check && npm run test:core && npm run build",
"bump": "node scripts/bump.mjs",
"bump:patch": "node scripts/bump.mjs",
"bump:dry": "node scripts/bump.mjs --dry",
"release:patch": "npm run verify && npm run bump:patch && node scripts/release-commit.mjs",
"release:npm:dry": "node scripts/release-npm.mjs --dry",
"release:npm": "node scripts/release-npm.mjs --publish",
"pack:npm": "node scripts/release-npm.mjs --dry",
"publish:npm:dry": "node scripts/release-npm.mjs --dry",
"publish:npm": "node scripts/release-npm.mjs --publish",
"ship": "node scripts/ship.mjs"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"typescript": "^5.4.5"
},
"engines": {
"node": ">=18.17"
}
}