-
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) · 961 Bytes
/
Copy pathpackage.json
File metadata and controls
40 lines (40 loc) · 961 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
37
38
39
40
{
"name": "@deepcode/app-server",
"version": "0.0.0",
"private": true,
"description": "Experimental DeepCode runtime protocol server",
"license": "MIT",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"bin": {
"deepcode-app-server": "./dist/cli.js"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"scripts": {
"build": "tsc -p tsconfig.json",
"build:sidecar": "node scripts/build-sidecar.mjs",
"typecheck": "tsc -b",
"test": "vitest run",
"lint": "echo 'lint: configured at workspace root' && exit 0",
"clean": "rm -rf dist *.tsbuildinfo"
},
"dependencies": {
"@deepcode/core": "workspace:*",
"@deepcode/protocol": "workspace:*"
},
"devDependencies": {
"@types/node": "^22.10.0",
"esbuild": "^0.21.5",
"typescript": "^5.7.0",
"vitest": "^2.1.9"
},
"engines": {
"node": ">=22"
}
}