-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 893 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 893 Bytes
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
{
"name": "@codegraph/plugin-common",
"version": "0.1.0",
"description": "Shared utilities for CodeGraph language plugins",
"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"
},
"dependencies": {
"@codegraph/types": "workspace:*"
},
"devDependencies": {
"tree-sitter": "^0.22.4",
"tree-sitter-typescript": "^0.23.2",
"tree-sitter-python": "^0.23.6",
"tree-sitter-java": "^0.23.5",
"tree-sitter-go": "^0.23.4",
"tree-sitter-rust": "^0.23.2",
"tree-sitter-php": "^0.23.11",
"tree-sitter-c-sharp": "^0.23.1",
"typescript": "^5.7.3",
"vitest": "^3.1.3"
}
}