forked from webdevtodayjason/context-forge
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 2.29 KB
/
Copy pathpackage.json
File metadata and controls
96 lines (96 loc) · 2.29 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
{
"name": "context-forge",
"version": "3.1.3",
"description": "Universal AI IDE configuration generator - Optimized setups for Claude Code, Cursor, Windsurf, Cline, Copilot, Gemini, and more",
"main": "dist/index.js",
"bin": {
"context-forge": "./bin/context-forge.js"
},
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"test": "jest",
"lint": "eslint . --ext .ts,.js",
"format": "prettier --write \"**/*.{js,ts,json,md}\"",
"prepublishOnly": "npm run build && npm run lint && npm test"
},
"keywords": [
"cli",
"context-engineering",
"claude-code",
"claude",
"anthropic",
"cursor-ide",
"cursor",
"windsurf",
"windsurf-ide",
"cascade-ai",
"cline",
"claude-dev",
"roo-code",
"roo",
"github-copilot",
"copilot",
"gemini",
"gemini-cli",
"ai-ide",
"ai-assistant",
"ai-configuration",
"project-generator",
"scaffolding",
"documentation",
"ai-assisted-development",
"prp",
"product-requirement-prompt",
"validation",
"developer-tools",
"automation",
"context-window",
"prompt-engineering",
"multi-ide",
"ide-configuration",
"code-assistant"
],
"author": "Jason Smith <webdevtodayjason@gmail.com>",
"license": "MIT",
"homepage": "https://github.com/webdevtodayjason/context-forge#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/webdevtodayjason/context-forge.git"
},
"bugs": {
"url": "https://github.com/webdevtodayjason/context-forge/issues"
},
"engines": {
"node": ">=18.0.0",
"npm": ">=7.0.0"
},
"files": [
"dist/",
"bin/",
"templates/"
],
"dependencies": {
"chalk": "^5.4.1",
"commander": "^14.0.0",
"fs-extra": "^11.3.0",
"handlebars": "^4.7.8",
"inquirer": "^12.7.0",
"ora": "^8.2.0"
},
"devDependencies": {
"@types/fs-extra": "^11.0.4",
"@types/inquirer": "^9.0.8",
"@types/jest": "^30.0.0",
"@types/node": "^24.0.12",
"@typescript-eslint/eslint-plugin": "^8.36.0",
"@typescript-eslint/parser": "^8.36.0",
"eslint": "^9.30.1",
"eslint-config-prettier": "^10.1.5",
"eslint-plugin-prettier": "^5.5.1",
"jest": "^30.0.4",
"prettier": "^3.6.2",
"ts-jest": "^29.4.0",
"typescript": "^5.8.3"
}
}