-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.22 KB
/
Copy pathpackage.json
File metadata and controls
47 lines (47 loc) · 1.22 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
{
"name": "stack-shared-ai",
"version": "1.1.0",
"description": "CLI tool that scans your codebase and generates compact, structured index files for AI assistants",
"main": "dist/cli.js",
"bin": {
"stack-shared-ai": "./bin/stack-shared-ai.js"
},
"files": [
"dist/",
"bin/",
"dart_helper/pubspec.yaml",
"dart_helper/bin/",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"start": "node dist/cli.js",
"prepublishOnly": "tsc"
},
"keywords": ["ai", "codebase", "scanner", "indexer", "flutter", "express", "nestjs", "nextjs", "bun", "typescript", "cli", "claude", "cursor", "copilot"],
"author": "Akshat Bhuhagal",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/akshatbhuhagal/stack-shared-ai.git"
},
"homepage": "https://github.com/akshatbhuhagal/stack-shared-ai#readme",
"bugs": {
"url": "https://github.com/akshatbhuhagal/stack-shared-ai/issues"
},
"engines": {
"node": ">=18"
},
"type": "commonjs",
"dependencies": {
"commander": "^14.0.3",
"ts-morph": "^27.0.2",
"yaml": "^2.8.3"
},
"devDependencies": {
"@types/node": "^25.5.2",
"typescript": "^6.0.2"
}
}