-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.61 KB
/
Copy pathpackage.json
File metadata and controls
87 lines (87 loc) · 2.61 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
{
"name": "@redker56/agentforge",
"version": "0.2.5",
"description": "A CLI for managing and syncing skills across Claude Code, Codex, Gemini CLI, OpenClaw, Cursor, OpenCode, Qoder, and project workspaces.",
"type": "module",
"bin": {
"af": "bin/cli.js"
},
"files": [
"bin/",
"dist/",
"README.md",
"LICENSE"
],
"scripts": {
"build": "node ./scripts/clean-dist.mjs && tsc",
"check:package": "npm pack --dry-run",
"dev": "tsc --watch",
"prepack": "npm run build",
"postinstall": "node bin/postinstall.js",
"smoke:pack": "node ./scripts/smoke-pack-install.mjs",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"verify": "npm run verify:ci",
"verify:ci": "npm run build && npm test && npm run lint && npm run arch:test && npm run format:check && npm run audit:prod && npm run check:package && npm pack && npm run smoke:pack",
"format": "prettier --write \"src/**/*.{ts,tsx}\" \"tests/**/*.{ts,tsx}\"",
"format:check": "prettier --check \"src/**/*.{ts,tsx}\" \"tests/**/*.{ts,tsx}\"",
"lint": "eslint src tests",
"lint:fix": "eslint src tests --fix",
"arch:test": "vitest run tests/architecture/layer-boundaries.test.ts",
"audit:prod": "npm audit --omit=dev --audit-level=high"
},
"keywords": [
"ai",
"skills",
"agent",
"claude",
"codex",
"gemini"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/redker56/AgentForge.git"
},
"bugs": {
"url": "https://github.com/redker56/AgentForge/issues"
},
"homepage": "https://github.com/redker56/AgentForge#readme",
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=20"
},
"dependencies": {
"@inquirer/prompts": "^7.0.0",
"chalk": "^5.6.2",
"commander": "^14.0.2",
"execa": "^9.6.1",
"fs-extra": "^11.3.3",
"ink": "^6.0.0",
"ink-spinner": "^5.0.0",
"ink-text-input": "^6.0.0",
"react": "^19.0.0",
"string-width": "^8.2.0",
"zustand": "^5.0.0"
},
"devDependencies": {
"@types/fs-extra": "^11.0.4",
"@types/node": "^25.0.10",
"@types/react": "^19.0.0",
"@types/react-test-renderer": "^19.1.0",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"@vitest/coverage-v8": "^3.2.4",
"eslint": "^8.57.0",
"eslint-import-resolver-typescript": "^3.6.0",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-layer-rules": "file:./eslint-rules",
"ink-testing-library": "^4.0.0",
"prettier": "^3.2.0",
"typescript": "^5.9.3",
"vitest": "^3.0.0"
}
}