-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.32 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.32 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
{
"name": "@codellm-devkit/cldk",
"version": "0.0.0-pre-alpha",
"description": "",
"main": "dist/index.js",
"repository": {
"type": "git",
"url": "https://github.com/codellm-devkit/typescript-sdk.git"
},
"bugs": {
"url": "https://github.com/codellm-devkit/typescript-sdk/issues"
},
"homepage": "https://github.com/codellm-devkit/typescript-sdk#readme",
"scripts": {
"build": "bun build ./src/index.ts --outdir ./dist",
"test": "bun test --preload ./test/conftest.ts --timeout=600000 --verbose",
"clean": "rm -rf dist coverage *.lock"
},
"files": [
"dist",
"src/analysis/java/jars/codeanalyzer-2.3.3.jar"
],
"exports": [
"./dist/index.js"
],
"devDependencies": {
"@types/bun": "^1.2.10",
"@types/extract-zip": "2.0.0",
"@types/node": "^22.14.1",
"typescript": "^5.8.3"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"@types/jsonstream": "^0.8.33",
"JSONStream": "^1.3.5",
"bun": "^1.2.10",
"extract-zip": "^2.0.1",
"fast-glob": "^3.3.3",
"graphology": "^0.26.0",
"loglevel": "^1.9.2",
"zod": "^3.24.3"
},
"testing": {
"java-test-applications-path": "./test-applications/java",
"c-test-applications-path": "./test-applications/c",
"python-test-applications-path": "./test-applications/python"
}
}