forked from sandeepshekhar26/develop-anything
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.12 KB
/
Copy pathpackage.json
File metadata and controls
78 lines (78 loc) · 2.12 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
{
"name": "auk-develop",
"version": "1.1.4",
"description": "The AI Context Engineering Platform — one command and every AI coding tool understands your codebase. Tree-sitter powered, near-zero dependencies.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"auk": "dist/index.js",
"auk-dev": "dist/index.js"
},
"type": "module",
"scripts": {
"build": "tsup",
"dev": "node --experimental-strip-types --no-warnings --import ./scripts/ts-run.mjs src/index.ts",
"start": "node dist/index.js",
"test": "node --experimental-strip-types --no-warnings --import ./scripts/ts-run.mjs --test \"tests/**/*.test.ts\"",
"test:e2e": "node --experimental-strip-types --no-warnings --import ./scripts/ts-run.mjs --test \"tests/e2e/**/*.test.ts\"",
"typecheck": "tsc --noEmit",
"prepublishOnly": "npm run build",
"vendor-grammars": "node scripts/vendor-grammars.mjs"
},
"keywords": [
"ai",
"claude-code",
"cursor",
"copilot",
"codex",
"gemini-cli",
"aider",
"windsurf",
"context-engineering",
"claude-md",
"agents-md",
"code-analysis",
"architecture",
"developer-tools",
"tree-sitter",
"knowledge-graph",
"context-rot",
"decision-tracking",
"cursorrules",
"mcp",
"mcp-server",
"zero-dependencies"
],
"author": "Sandeep Kumar",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/sandeepshekhar26/develop-anything.git"
},
"homepage": "https://github.com/sandeepshekhar26/develop-anything#readme",
"bugs": {
"url": "https://github.com/sandeepshekhar26/develop-anything/issues"
},
"engines": {
"node": ">=20.0.0"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"dependencies": {
"web-tree-sitter": "0.26.9"
},
"devDependencies": {
"@types/node": "^22.15.0",
"tree-sitter-go": "^0.25.0",
"tree-sitter-java": "^0.23.5",
"tree-sitter-javascript": "^0.25.0",
"tree-sitter-python": "^0.25.0",
"tree-sitter-rust": "^0.24.0",
"tree-sitter-typescript": "^0.23.2",
"tsup": "^8.4.0",
"typescript": "^5.8.3"
}
}