-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 2.39 KB
/
Copy pathpackage.json
File metadata and controls
59 lines (59 loc) · 2.39 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
{
"name": "forge-kit-monorepo",
"version": "0.30.0",
"description": "Forge Kit monorepo for AI development rules, skills, setup, catalog, CLI, and web app",
"type": "module",
"private": true,
"license": "MIT",
"packageManager": "pnpm@9.12.0",
"repository": {
"type": "git",
"url": "https://github.com/LucasSantana-Dev/forgekit"
},
"keywords": [
"ai",
"agents",
"patterns",
"rules",
"companies",
"ai-dev-toolkit",
"forge-kit"
],
"engines": {
"node": ">=22"
},
"scripts": {
"validate": "npm run validate:shell && npm run validate:schema && npm run validate:leaks",
"validate:shell": "shellcheck -e SC2016 packages/core/tools/*.sh",
"validate:schema": "node scripts/validate-schemas.js",
"validate:leaks": "node scripts/skill-leak-check.js",
"backlog:check": "node scripts/reconcile-backlog-state.mjs --check",
"backlog:reconcile": "node scripts/reconcile-backlog-state.mjs --write",
"backlog:reconcile:dry": "node scripts/reconcile-backlog-state.mjs",
"typecheck:plugin": "tsc -p tsconfig.plugin.json",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
"test:coverage": "node --experimental-vm-modules node_modules/jest/bin/jest.js --coverage",
"lint": "eslint scripts/ test/",
"catalog:validate": "pnpm --filter @forge-kit/catalog-scripts run validate",
"catalog:index": "pnpm --filter @forge-kit/catalog-scripts run index",
"catalog:llms": "pnpm --filter @forge-kit/catalog-scripts run llms",
"cli:build": "pnpm --filter forge-kit run build",
"cli:typecheck": "pnpm --filter forge-kit run typecheck",
"web:dev": "pnpm --filter @forge-kit/web run dev",
"web:test:e2e": "pnpm --filter @forge-kit/web run test:e2e",
"web:build": "pnpm --filter @forge-kit/web run build",
"setup:check": "bash packages/setup/scripts/ci-check.sh",
"workspace:validate": "npm run validate && npm run lint && npm run test && pnpm run catalog:validate && pnpm run catalog:llms && pnpm run cli:typecheck && pnpm run web:build",
"format": "prettier --write \"**/*.{md,json,yml,yaml}\" --ignore-path .prettierignore",
"format:check": "prettier --check \"**/*.{md,json,yml,yaml}\" --ignore-path .prettierignore"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"ajv": "^8",
"eslint": "^10",
"jest": "^30",
"prettier": "^3",
"typescript": "^5.9.3",
"yaml": "^2"
}
}