-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 3.85 KB
/
Copy pathpackage.json
File metadata and controls
90 lines (90 loc) · 3.85 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
{
"name": "syncrona-monorepo",
"version": "0.9.0",
"private": true,
"description": "AI-ready ServiceNow MCP server for metadata analysis, dependency graphs, impact analysis, and scoped application documentation.",
"engines": {
"node": ">=22.0.0",
"npm": ">=10.0.0"
},
"scripts": {
"build:deps": "npm --workspace @syncrona/credential-store run prepack && npm --workspace @syncrona/jira run prepack && npm --workspace @syncrona/sn-transport run prepack",
"build": "npm run build:deps && npm --workspaces --if-present run prepack",
"test": "npm run test:core && npm run test:mcp && npm run test:shared",
"test:core": "npm --workspace syncrona test",
"test:mcp": "npm --workspace @syncrona/mcp-server test",
"test:shared": "npm --workspace @syncrona/jira test && npm --workspace @syncrona/credential-store test && npm --workspace @syncrona/sn-transport test",
"test:coverage:core": "echo 'core coverage is enforced by test:core (jest --coverage ratchet 92/79/89/92); no-op alias avoids a duplicate full core run (gap-analysis #24)'",
"test:coverage:mcp": "npm --workspace @syncrona/mcp-server run test:coverage:gate -- --line-threshold 90 --branch-threshold 80",
"test:coverage:gates": "npm run test:coverage:core && npm run test:coverage:mcp",
"typecheck:core": "npm --workspace syncrona run prepack",
"typecheck:mcp": "npm --workspace @syncrona/mcp-server run build",
"typecheck:all": "npm run build:deps && npm --workspaces --if-present run prepack",
"typecheck": "npm run typecheck:all",
"lint:core": "npx eslint \"packages/core/src/**/*.ts\" --max-warnings=0",
"lint:mcp": "npx eslint \"packages/mcp-server/src/**/*.ts\" --max-warnings=0",
"lint:packages": "npx eslint \"packages/*/src/**/*.ts\" --max-warnings=0",
"lint:boundaries": "npx depcruise packages --include-only \"^packages/([^/]+/src|types/)\" --config .dependency-cruiser.cjs --no-progress",
"lint:boundaries:selftest": "node scripts/depcruise-selftest.mjs",
"lint": "npm run lint:packages && npm run lint:boundaries && npm run lint:boundaries:selftest",
"quality": "npm --workspace @syncrona/mcp-server run quality-gates",
"quality:core": "npm --workspace syncrona run prepack",
"quality:mcp": "npm --workspace @syncrona/mcp-server run quality-gates",
"quality:all": "npm run quality:core && npm run quality:mcp",
"verify:pack": "node scripts/verify-pack-contents.mjs",
"check": "npm run build && npm run lint && npm run test && npm run test:coverage:gates && SKIP_TESTS=1 npm run quality:all && npm run verify:pack",
"bench": "npm run build && node scripts/bench.mjs",
"mcp:build": "npm --workspace @syncrona/mcp-server run build",
"changeset": "changeset",
"version-packages": "changeset version",
"release": "npm run build && changeset publish"
},
"author": "Ivan Baev",
"license": "GPL-3.0-or-later",
"devDependencies": {
"@changesets/cli": "^2.31.0",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"dependency-cruiser": "^18.0.0",
"eslint": "^8.51.0",
"typescript": "~5.9.3"
},
"workspaces": [
"packages/*"
],
"overrides": {
"micromatch": "^4.0.8",
"uuid": "^11.1.1",
"form-data": "^4.0.6",
"hono": "^4.12.25"
},
"directories": {
"doc": "docs"
},
"keywords": [
"servicenow",
"servicenow-mcp",
"mcp",
"model-context-protocol",
"servicenow-cli",
"servicenow-developer-tools",
"servicenow-automation",
"servicenow-integration",
"servicenow-scope",
"scoped-applications",
"metadata-analysis",
"dependency-graph",
"impact-analysis",
"scope-documentation",
"knowledge-graph",
"mermaid",
"typescript",
"ai-tools",
"developer-tools",
"devops"
],
"repository": {
"type": "git",
"url": "git+https://github.com/IvanBBaev/syncrona.git"
}
}