-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 3.02 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 3.02 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
{
"name": "webai-mcp-workspace",
"version": "1.5.1-dev.3",
"private": true,
"description": "WebAI-MCP workspace for automated changelog and release management - v1.5.1-dev.3",
"scripts": {
"health:check": "node scripts/repository-health.mjs",
"changelog": "auto-changelog --config .auto-changelog",
"changelog:update": "auto-changelog --config .auto-changelog --unreleased",
"version:bump": "npm run changelog && git add CHANGELOG.md",
"diagnose": "node scripts/diagnose.js",
"test:all": "node tests/test-all.js",
"build": "npm run build --workspace=webai-mcp && npm run build --workspace=webai-server",
"build:all": "cd webai-mcp && npm run build && cd ../webai-server && npm run build",
"test": "npm run test --workspace=webai-mcp && npm run test --workspace=webai-server",
"test:restricted": "npm run test:inband --workspace=webai-mcp",
"test:restricted:server": "npm run test:inband --workspace=webai-server",
"dev": "concurrently \"npm run start --workspace=webai-server\" \"npm run start --workspace=webai-mcp\"",
"clean": "npm run clean --workspace=webai-mcp && npm run clean --workspace=webai-server",
"install:all": "npm install && cd webai-mcp && npm install && cd ../webai-server && npm install",
"clean:locks": "find . -name 'package-lock.json' -delete 2>/dev/null || Remove-Item -Path .\\*\\package-lock.json -Force -ErrorAction SilentlyContinue; Remove-Item -Path .\\package-lock.json -Force -ErrorAction SilentlyContinue",
"reset:deps": "npm run clean:locks && npm run install:all",
"release:local": "node scripts/run-local-release.js",
"release:local:unix": "bash scripts/local-release.sh",
"release:local:win": "powershell -NoProfile -ExecutionPolicy Bypass -File scripts/local-release.ps1"
},
"workspaces": [
"webai-mcp",
"webai-server"
],
"overrides": {
"form-data": "4.0.4",
"@conventional-changelog/git-client": "2.0.0"
},
"devDependencies": {
"auto-changelog": "^2.5.0",
"concurrently": "^9.2.1",
"conventional-changelog-cli": "^5.0.0",
"conventional-changelog-conventionalcommits": "^9.1.0"
},
"repository": {
"type": "git",
"url": "https://github.com/cpjet64/WebAI-MCP.git"
},
"keywords": [
"mcp",
"browser-automation",
"chrome-extension",
"ai-tools",
"webai"
],
"author": "cpjet64",
"license": "MIT",
"auto-changelog": {
"output": "CHANGELOG.md",
"template": "keepachangelog",
"unreleased": true,
"commitLimit": false,
"backfillLimit": false,
"handlebarsHelpers": {
"formatCommitType": "function(type) { const types = { feat: '✨ Added', fix: '🐛 Fixed', docs: '📚 Documentation', style: '💄 Style', refactor: '♻️ Refactor', perf: '⚡ Performance', test: '✅ Tests', chore: '🔧 Chore', ci: '👷 CI/CD', build: '📦 Build' }; return types[type] || '🔄 Changed'; }"
}
},
"packageManager": "pnpm@10.30.2+sha512.36cdc707e7b7940a988c9c1ecf88d084f8514b5c3f085f53a2e244c2921d3b2545bc20dd4ebe1fc245feec463bb298aecea7a63ed1f7680b877dc6379d8d0cb4"
}