-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.22 KB
/
package.json
File metadata and controls
40 lines (40 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
{
"name": "@jpoly1219/context-extractor",
"version": "0.2.13",
"description": "Extract relevant context from an incomplete program sketch.",
"repository": {
"type": "git",
"url": "https://github.com/jpoly1219/context-extractor.git"
},
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"files": [
"dist/"
],
"scripts": {
"build": "rm -rf dist/ && npx tsc && npm run copy-deps",
"copy-deps": "npm run copy-lsp-client && npm run copy-ocaml && npm run copy-tree-sitter",
"copy-lsp-client": "shx cp -r ts-lsp-client-dist dist/",
"copy-ocaml": "shx mkdir -p dist/src/ocaml-utils/ && shx cp -r src/ocaml-utils/_build dist/src/ocaml-utils/_build/",
"copy-tree-sitter": "shx cp -r src/tree-sitter-files/ dist/src/",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "",
"license": "ISC",
"dependencies": {
"json-rpc-2.0": "^1.7.0",
"openai": "^4.86.2",
"pino": "^9.6.0",
"pprof": "^4.0.0",
"shx": "^0.3.4",
"tree-sitter-wasms": "^0.1.11",
"ts-node": "^10.9.2",
"tslib": "^2.8.1",
"uri-js": "^4.4.1",
"web-tree-sitter": "^0.21.0"
},
"devDependencies": {
"@types/vscode": "^1.99.1",
"typescript": "^5.8.2"
}
}