-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
126 lines (126 loc) · 3.58 KB
/
package.json
File metadata and controls
126 lines (126 loc) · 3.58 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
{
"name": "indexer-ai",
"version": "2.1.0",
"description": "High-performance universal codebase indexer for AI assistants and development tools",
"main": "dist/index.js",
"bin": {
"idxr": "./bin/indexer.js",
"indexer": "./bin/indexer.js",
"indexer-ai": "./bin/indexer.js"
},
"files": [
"dist/**/*",
"bin/**/*",
"config/**/*",
"README.md",
"LICENSE",
"package.json"
],
"scripts": {
"build": "tsc && node scripts/build-worker.js"
"dev": "tsc --watch",
"test": "jest",
"test:unit": "jest",
"test:e2e": "cypress run",
"test:open": "cypress open",
"test:coverage": "jest --coverage",
"lint": "eslint src/",
"format": "prettier --write 'src/**/*.ts'",
"prepublish": "npm run build && npm test",
"postinstall": "node scripts/postinstall.js || true"
"clean": "rm -rf dist .indexer-cache coverage",
"prebuild": "npm run clean",
"api": "npm run build && node dist/cli/index.js api",
"api:dev": "npm run build && node dist/cli/index.js api --enable-auth false",
"api:prod": "npm run build && NODE_ENV=production node dist/cli/index.js api --enable-auth true",
"start": "ts-node --transpile-only src/cli/index.ts",
"scan": "ts-node --transpile-only src/cli/index.ts scan",
"install-hooks": "ts-node --transpile-only src/cli/install-hooks.ts",
"uninstall-hooks": "ts-node --transpile-only src/cli/install-hooks.ts uninstall"
},
"keywords": [
"indexer",
"indexer-ai",
"idxr",
"code-analysis",
"ast",
"parser",
"codebase",
"ai-tools",
"claude",
"copilot",
"cursor",
"ai-assistant",
"development-tools"
],
"author": "James Rosing <jamesrosing@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/tacit-code/indexer"
},
"homepage": "https://github.com/tacit-code/indexer#readme",
"bugs": {
"url": "https://github.com/tacit-code/indexer/issues"
},
"dependencies": {
"@anthropic-ai/claude-code": "^1.0.89",
"@apollo/server": "^5.0.0",
"@babel/parser": "^7.24.0",
"@babel/traverse": "^7.24.0",
"@babel/types": "^7.24.0",
"@graphql-tools/schema": "^10.0.25",
"@linear/sdk": "^25.0.0",
"@slack/events-api": "^3.0.1",
"@slack/web-api": "^6.11.0",
"apollo-server-express": "^3.13.0",
"bcrypt": "^6.0.0",
"chokidar": "^3.6.0",
"commander": "^12.0.0",
"cors": "^2.8.5",
"dotenv": "^17.2.1",
"express": "^4.21.1",
"express-rate-limit": "^8.0.1",
"glob": "^10.3.10",
"graphql": "^16.11.0",
"graphql-subscriptions": "^3.0.0",
"helmet": "^8.1.0",
"ignore": "^5.3.1",
"js-yaml": "^4.1.0",
"jsonwebtoken": "^9.0.2",
"morgan": "^1.10.1",
"node-dogstatsd": "^0.0.7",
"p-limit": "^3.1.0"
"tree-sitter": "^0.25.0",
"tree-sitter-python": "^0.23.6",
"typescript": "^5.3.3",
"ws": "^8.18.3"
},
"devDependencies": {
"@cypress/code-coverage": "^3.12.0",
"@jest/globals": "^30.0.5",
"@types/babel__traverse": "^7.20.5",
"@types/bcrypt": "^5.0.2",
"@types/jest": "^30.0.0",
"@types/js-yaml": "^4.0.9",
"@types/jsonwebtoken": "^9.0.6",
"@types/morgan": "^1.9.9",
"@types/node": "^20.19.11",
"@types/ws": "^8.5.10",
"@typescript-eslint/eslint-plugin": "^6.19.0",
"@typescript-eslint/parser": "^6.19.0",
"chalk": "^4.1.2",
"cypress": "^13.6.3",
"eslint": "^8.56.0",
"jest": "^29.7.0",
"prettier": "^3.2.4",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.2"
},
"engines": {
"node": ">=20.0.0"
},
"publishConfig": {
"access": "public"
}
}