|
1 | 1 | { |
2 | 2 | "name": "context-forge", |
3 | 3 | "version": "1.1.0", |
4 | | - "description": "Zero-dependency AI context engine — 97% token reduction", |
| 4 | + "description": "Zero-dependency AI context engine — 97% token reduction. No npm install. Runs on Node 18+.", |
5 | 5 | "main": "gen-context.js", |
6 | 6 | "bin": { |
7 | 7 | "gen-context": "./gen-context.js", |
|
10 | 10 | }, |
11 | 11 | "scripts": { |
12 | 12 | "test": "node test/run.js", |
| 13 | + "test:integration": "node test/integration/strategy.test.js && node test/integration/secret-scan.test.js && node test/integration/token-budget.test.js && node test/integration/mcp-server.test.js", |
| 14 | + "test:all": "node test/run.js && node test/integration/strategy.test.js && node test/integration/secret-scan.test.js", |
13 | 15 | "generate": "node gen-context.js", |
14 | | - "report": "node gen-context.js --report" |
| 16 | + "watch": "node gen-context.js --watch", |
| 17 | + "setup": "node gen-context.js --setup", |
| 18 | + "init": "node gen-context.js --init", |
| 19 | + "report": "node gen-context.js --report", |
| 20 | + "health": "node gen-context.js --health", |
| 21 | + "map": "node gen-project-map.js", |
| 22 | + "mcp": "node gen-context.js --mcp" |
| 23 | + }, |
| 24 | + "files": [ |
| 25 | + "gen-context.js", |
| 26 | + "gen-project-map.js", |
| 27 | + "src/", |
| 28 | + "README.md", |
| 29 | + "LICENSE", |
| 30 | + "CHANGELOG.md", |
| 31 | + ".contextignore.example", |
| 32 | + "gen-context.config.json.example" |
| 33 | + ], |
| 34 | + "keywords": [ |
| 35 | + "ai", |
| 36 | + "context", |
| 37 | + "copilot", |
| 38 | + "claude", |
| 39 | + "cursor", |
| 40 | + "windsurf", |
| 41 | + "llm", |
| 42 | + "tokens", |
| 43 | + "token-reduction", |
| 44 | + "code-signatures", |
| 45 | + "ai-context", |
| 46 | + "zero-dependency", |
| 47 | + "mcp", |
| 48 | + "github-copilot" |
| 49 | + ], |
| 50 | + "author": { |
| 51 | + "name": "Manoj Mallick", |
| 52 | + "url": "https://github.com/manojmallick" |
| 53 | + }, |
| 54 | + "repository": { |
| 55 | + "type": "git", |
| 56 | + "url": "https://github.com/manojmallick/context-forge.git" |
| 57 | + }, |
| 58 | + "homepage": "https://manojmallick.github.io/context-forge/", |
| 59 | + "bugs": { |
| 60 | + "url": "https://github.com/manojmallick/context-forge/issues" |
15 | 61 | }, |
16 | | - "keywords": ["ai", "context", "copilot", "claude", "llm", "tokens", "token-reduction", "code-signatures"], |
17 | | - "author": "Manoj Mallick,Independent Researcher, Amsterdam, Netherlands", |
18 | 62 | "license": "MIT", |
19 | 63 | "engines": { |
20 | 64 | "node": ">=18.0.0" |
21 | 65 | }, |
22 | | - "dependencies": {} |
| 66 | + "devDependencies": {} |
23 | 67 | } |
0 commit comments