-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.65 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.65 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
{
"name": "@codegraph/plugin-languages",
"version": "0.1.0",
"description": "Tier-2 language plugins for CodeGraph — config-only definitions with lazy-loaded grammars",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"clean": "rm -rf dist",
"typecheck": "tsc --noEmit",
"test": "vitest run --passWithNoTests"
},
"dependencies": {
"@codegraph/plugin-common": "workspace:*",
"@codegraph/plugin-generic": "workspace:*",
"@codegraph/types": "workspace:*",
"tree-sitter-c-sharp": "^0.21.3",
"tree-sitter-java": "^0.23.5",
"tree-sitter-php": "^0.23.11"
},
"optionalDependencies": {
"tree-sitter-bash": "^0.23.0",
"tree-sitter-c": "^0.23.0",
"tree-sitter-clojure": "^0.1.0",
"tree-sitter-cpp": "^0.23.0",
"tree-sitter-css": "^0.23.0",
"tree-sitter-elixir": "^0.3.0",
"tree-sitter-fsharp": "^0.1.0",
"tree-sitter-groovy": "^0.1.0",
"tree-sitter-haskell": "^0.21.0",
"tree-sitter-html": "^0.23.0",
"tree-sitter-json": "^0.24.0",
"tree-sitter-julia": "^0.23.0",
"tree-sitter-kotlin": "^0.3.0",
"tree-sitter-objc": "^3.0.0",
"tree-sitter-ocaml": "^0.23.0",
"tree-sitter-powershell": "^0.25.0",
"tree-sitter-ruby": "^0.23.0",
"tree-sitter-scala": "^0.22.0",
"tree-sitter-swift": "^0.6.0",
"tree-sitter-verilog": "^0.2.0",
"tree-sitter-yaml": "^0.5.0",
"tree-sitter-zig": "^0.1.0"
},
"devDependencies": {
"typescript": "^5.7.3",
"vitest": "^3.0.5"
}
}