This repository was archived by the owner on Apr 21, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
183 lines (183 loc) · 6.48 KB
/
package.json
File metadata and controls
183 lines (183 loc) · 6.48 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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
{
"name": "@forgespace/core",
"version": "1.14.1",
"description": "Shared configuration, workflows, and architectural patterns for the Forgespace ecosystem",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"exports": {
".": {
"types": "./dist/src/index.d.ts",
"default": "./dist/src/index.js"
}
},
"files": [
"dist/",
"patterns/",
"scripts/",
"docs/",
"README.md",
"LICENSE"
],
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"api:extract": "api-extractor run --local",
"api:check": "api-extractor run",
"api:docs": "api-documenter markdown --input-folder temp --output-folder docs/api",
"lint": "eslint . --fix",
"lint:check": "eslint .",
"format": "prettier --write .",
"format:check": "prettier --check .",
"check:tenant-decoupling": "bash scripts/security/validate-tenant-decoupling.sh",
"validate": "npm run lint:check && npm run format:check && npm run test:validation && npm run check:tenant-decoupling",
"ci:test-autogen:write": "npx forge-ai-init test-autogen --staged --write --json --tenant \"$FORGE_TENANT_ID\" --tenant-profile-ref \"$FORGE_TENANT_PROFILE_REF\"",
"ci:test-autogen:check": "npx forge-ai-init test-autogen --check --json --tenant \"$FORGE_TENANT_ID\" --tenant-profile-ref \"$FORGE_TENANT_PROFILE_REF\"",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:validation": "node test/plugin-system-validation.js && node test/feature-toggle-validation.js && node test/shared-constants-validation.js",
"test:workflow": "bash patterns/cost/scripts/validate-development-workflow.sh",
"test:plugins": "node test/plugin-system-validation.js",
"test:feature-toggles": "node test/feature-toggle-validation.js",
"test:integration": "node test/cross-project-integration.js",
"test:shared-constants": "node test/shared-constants-validation.js",
"test:all": "npm run test:validation && npm run test:coverage",
"knip": "knip",
"check:cycles": "madge --circular --extensions ts src/",
"prepare": "npm run build && husky",
"pre-commit": "npm run lint && npm run format && npm run test:validation && .husky/pre-commit-backup-check",
"prepack": "npm run build",
"publish:npm": "npm publish --access public",
"release": "bash scripts/release-core.sh",
"release:patch": "bash scripts/release-core.sh patch",
"release:minor": "bash scripts/release-core.sh minor",
"release:major": "bash scripts/release-core.sh major",
"release:validate": "bash scripts/validate-release.sh",
"release:rollback": "bash scripts/rollback-release.sh",
"release:update-deps": "bash scripts/update-dependencies.sh",
"integrate": "node scripts/integrate.js",
"integrate:mcp-gateway": "node scripts/integrate.js --project=mcp-gateway",
"integrate:ui-mcp": "node scripts/integrate.js --project=ui-mcp",
"integrate:siza": "node scripts/integrate.js --project=siza",
"funding:nlnet:render": "node scripts/funding/render-nlnet-packet.cjs",
"funding:nlnet:init-local": "node scripts/funding/init-nlnet-applicant.cjs",
"funding:nlnet:check": "node scripts/funding/check-nlnet-deadline.cjs",
"ecosystem:health": "bash scripts/ecosystem-health.sh",
"ecosystem:prs": "bash scripts/ecosystem-health.sh --prs",
"ecosystem:branches": "bash scripts/ecosystem-health.sh --branches",
"ecosystem:versions": "bash scripts/ecosystem-health.sh --versions",
"patterns": "node scripts/forge-patterns-cli.js",
"patterns:list": "node scripts/forge-patterns-cli.js list",
"patterns:search": "node scripts/forge-patterns-cli.js search",
"patterns:validate": "node scripts/forge-patterns-cli.js validate",
"mcp-context:build": "tsc --project src/mcp-context-server/tsconfig.json",
"mcp-context:start": "node dist/mcp-context-server/index.js"
},
"bin": {
"forge-patterns": "scripts/forge-patterns-cli.js",
"forge-scorecard": "dist/patterns/idp/scorecards/cli.js",
"forge-policy": "dist/patterns/idp/policy-engine/cli.js",
"forge-features": "dist/patterns/idp/feature-toggles/cli.js",
"forge-init": "dist/patterns/idp/init/cli.js",
"forge-audit": "dist/patterns/idp/migration/cli.js"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.27.1",
"chalk": "^5.3.0",
"commander": "^14.0.3",
"fs-extra": "^11.3.4",
"ora": "^7.0.1",
"semver": "^7.5.4"
},
"devDependencies": {
"@commitlint/cli": "^20.5.0",
"@commitlint/config-conventional": "^20.5.0",
"@eslint/js": "^10.0.1",
"@microsoft/api-documenter": "^7.29.10",
"@microsoft/api-extractor": "^7.58.1",
"@types/fs-extra": "^11.0.1",
"@types/jest": "^30.0.0",
"@types/node": "^25.5.0",
"@types/semver": "^7.5.0",
"@typescript-eslint/eslint-plugin": "^8.58.1",
"@typescript-eslint/parser": "^8.58.1",
"eslint": "^10.0.3",
"eslint-config-prettier": "^10.1.8",
"fast-check": "^4.6.0",
"globals": "^17.3.0",
"husky": "^9.1.7",
"jest": "^30.3.0",
"knip": "^6.1.0",
"lint-staged": "^16.4.0",
"madge": "^8.0.0",
"prettier": "^3.8.1",
"ts-jest": "^29.4.6",
"typescript": "^5.1.6",
"typescript-eslint": "^8.58.1"
},
"lint-staged": {
"*.{js,ts}": [
"eslint --fix",
"prettier --write"
],
"*.{json,yml,yaml}": [
"prettier --write"
],
"*.md": [
"prettier --write"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "npm run validate"
}
},
"keywords": [
"patterns",
"architecture",
"mcp",
"idp",
"governance",
"scorecard",
"forgespace",
"development",
"workflow",
"typescript",
"eslint",
"prettier"
],
"author": "Forgespace",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Forge-Space/core.git"
},
"bugs": {
"url": "https://github.com/Forge-Space/core/issues"
},
"homepage": "https://github.com/Forge-Space/core#readme",
"engines": {
"node": ">=22.0.0",
"npm": ">=9.0.0"
},
"overrides": {
"axios": ">=0.0.0 <0.30.4 || >0.30.4 <1.14.1 || >=1.14.2",
"madge": {
"typescript": "$typescript"
},
"@typescript-eslint/eslint-plugin": {
"typescript": "$typescript"
},
"@typescript-eslint/parser": {
"typescript": "$typescript"
},
"@typescript-eslint/typescript-estree": {
"typescript": "$typescript"
}
}
}