-
Notifications
You must be signed in to change notification settings - Fork 42
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.91 KB
/
Copy pathpackage.json
File metadata and controls
68 lines (68 loc) · 1.91 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
{
"name": "sigmap",
"version": "2.3.0",
"description": "Zero-dependency AI context engine — 97% token reduction. No npm install. Runs on Node 18+.",
"main": "gen-context.js",
"bin": {
"sigmap": "./gen-context.js",
"gen-context": "./gen-context.js",
"gen-project-map": "./gen-project-map.js"
},
"scripts": {
"test": "node test/run.js",
"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",
"test:integration:all": "node test/integration/all.js",
"test:all": "node test/run.js && node test/integration/strategy.test.js && node test/integration/secret-scan.test.js",
"generate": "node gen-context.js",
"watch": "node gen-context.js --watch",
"setup": "node gen-context.js --setup",
"init": "node gen-context.js --init",
"report": "node gen-context.js --report",
"health": "node gen-context.js --health",
"map": "node gen-project-map.js",
"mcp": "node gen-context.js --mcp"
},
"files": [
"gen-context.js",
"gen-project-map.js",
"src/",
"README.md",
"LICENSE",
"CHANGELOG.md",
".contextignore.example",
"gen-context.config.json.example"
],
"keywords": [
"ai",
"context",
"copilot",
"claude",
"cursor",
"windsurf",
"llm",
"tokens",
"token-reduction",
"code-signatures",
"ai-context",
"zero-dependency",
"mcp",
"github-copilot"
],
"author": {
"name": "Manoj Mallick",
"url": "https://github.com/manojmallick"
},
"repository": {
"type": "git",
"url": "https://github.com/manojmallick/sigmap.git"
},
"homepage": "https://manojmallick.github.io/sigmap/",
"bugs": {
"url": "https://github.com/manojmallick/sigmap/issues"
},
"license": "MIT",
"engines": {
"node": ">=18.0.0"
},
"devDependencies": {}
}