-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
101 lines (101 loc) · 3.64 KB
/
package.json
File metadata and controls
101 lines (101 loc) · 3.64 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
{
"name": "code-indexer",
"version": "1.0.0",
"main": "dist/src/index.js",
"scripts": {
"clean": "rm -rf dist",
"build": "npm run clean && tsc -p tsconfig.build.json",
"type:check": "tsc --noEmit",
"postbuild": "chmod +x dist/index.js",
"lint": "eslint . --ext .ts",
"format": "prettier --write \"src/**/*.ts\" \"tests/**/*.ts\"",
"format:check": "prettier --check \"src/**/*.ts\" \"tests/**/*.ts\"",
"index": "NODE_OPTIONS=--max-old-space-size=8192 ts-node src/index.ts index",
"setup": "ts-node src/index.ts setup",
"search": "ts-node src/index.ts search",
"queue:clear": "ts-node src/index.ts queue:clear",
"queue:monitor": "ts-node src/index.ts queue:monitor",
"queue:retry-failed": "ts-node src/index.ts queue:retry-failed",
"queue:list-failed": "ts-node src/index.ts queue:list-failed",
"dump-tree": "ts-node src/index.ts dump-tree",
"test": "vitest run",
"test:watch": "vitest",
"test:ui": "vitest --ui",
"test:unit": "vitest run tests/unit/**",
"test:integration": "npm run test:integration:setup && npm run test:integration:run; TEST_EXIT_CODE=$?; npm run test:integration:teardown; exit $TEST_EXIT_CODE",
"test:integration:run": "vitest run --config vitest.integration.config.ts",
"test:integration:setup": "bash scripts/setup-integration-tests.sh",
"test:integration:teardown": "bash scripts/teardown-integration-tests.sh",
"test:all": "vitest run",
"prepare": "husky"
},
"keywords": [],
"author": "",
"license": "SSPL-1.0",
"overrides": {
"tree-sitter": "^0.25.0"
},
"dependencies": {
"@derekstride/tree-sitter-sql": "^0.3.11",
"@elastic/elasticsearch": "^9.1.1",
"@opentelemetry/api": "^1.9.0",
"@opentelemetry/exporter-logs-otlp-http": "^0.52.0",
"@opentelemetry/exporter-metrics-otlp-http": "^0.52.0",
"@opentelemetry/resources": "^1.25.0",
"@opentelemetry/sdk-logs": "^0.52.0",
"@opentelemetry/sdk-metrics": "^1.25.0",
"@opentelemetry/sdk-node": "^0.52.0",
"@opentelemetry/semantic-conventions": "^1.25.0",
"@tree-sitter-grammars/tree-sitter-hcl": "^1.2.0",
"@types/cli-progress": "^3.11.6",
"@types/lodash": "^4.17.20",
"@types/moment": "^2.11.29",
"@types/moment-timezone": "^0.5.13",
"@types/uuid": "^10.0.0",
"better-sqlite3": "^12.2.0",
"cli-progress": "^3.12.0",
"commander": "^12.1.0",
"dotenv": "^17.2.1",
"glob": "^11.0.3",
"husky": "^9.1.7",
"ignore": "^7.0.5",
"lodash": "^4.17.21",
"moment": "^2.30.1",
"moment-timezone": "^0.6.0",
"p-queue": "^6.6.2",
"simple-git": "^3.28.0",
"tree-sitter": "^0.25.0",
"tree-sitter-bash": "^0.25.0",
"tree-sitter-c": "^0.24.1",
"tree-sitter-cpp": "^0.23.4",
"tree-sitter-go": "^0.25.0",
"tree-sitter-java": "^0.23.5",
"tree-sitter-javascript": "^0.25.0",
"tree-sitter-properties": "^0.3.0",
"tree-sitter-python": "^0.23.6",
"tree-sitter-scala": "^0.24.0",
"tree-sitter-typescript": "^0.23.2",
"uuid": "^11.1.0",
"vscode-languageserver-protocol": "^3.17.5"
},
"devDependencies": {
"@marp-team/marp-cli": "^4.2.3",
"@types/better-sqlite3": "^7.6.13",
"@types/glob": "^8.1.0",
"@types/node": "^24.3.0",
"@typescript-eslint/eslint-plugin": "^8.39.1",
"@typescript-eslint/parser": "^8.39.1",
"@vitest/ui": "^4.0.13",
"dotenv-cli": "^10.0.0",
"eslint": "^9.33.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.4",
"memfs": "^4.38.2",
"prettier": "^3.6.2",
"ts-node": "^10.9.2",
"typescript": "^5.9.2",
"typescript-eslint": "^8.40.0",
"vite": "^7.2.4",
"vitest": "^4.0.13"
}
}