-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 1.83 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 1.83 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
{
"name": "@illegalstudio/context",
"version": "0.2.1",
"description": "CLI context packer for agentic coding - transforms tasks into deterministic, explainable context packages",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"context": "dist/cli/index.js"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/illegalstudio/context.git"
},
"homepage": "https://github.com/illegalstudio/context#readme",
"bugs": {
"url": "https://github.com/illegalstudio/context/issues"
},
"scripts": {
"build": "tsc",
"dev": "tsc -w",
"start": "node dist/cli/index.js",
"clean": "rm -rf dist",
"prepublishOnly": "npm run build",
"test": "vitest run",
"test:watch": "vitest",
"test:ui": "vitest --ui",
"test:coverage": "vitest run --coverage",
"test:e2e": "npm run build && vitest run --config vitest.e2e.config.ts",
"test:all": "npm run test && npm run test:e2e"
},
"keywords": [
"cli",
"ai",
"coding",
"context",
"agentic-coding",
"claude",
"cursor",
"codex"
],
"author": "Illegal Studio",
"license": "MIT",
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"@vscode/ripgrep": "^1.15.9",
"archiver": "^7.0.1",
"better-sqlite3": "^11.7.0",
"chalk": "^5.3.0",
"commander": "^12.1.0",
"glob": "^11.0.0",
"ignore": "^7.0.0",
"ora": "^8.1.1",
"snowball-stemmers": "^0.6.0"
},
"devDependencies": {
"@types/archiver": "^6.0.3",
"@types/better-sqlite3": "^7.6.12",
"@types/node": "^22.10.5",
"@vitest/coverage-v8": "^4.0.18",
"@vitest/ui": "^4.0.18",
"typescript": "^5.7.2",
"vitest": "^4.0.18"
}
}