forked from continuedev/continue
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.33 KB
/
package.json
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
58
{
"name": "binary",
"version": "1.0.0",
"description": "",
"main": "out/index.js",
"bin": "out/index.js",
"pkg": {
"scripts": [
"node_modules/axios/**/*"
],
"assets": [
"../core/node_modules/sqlite3/**/*",
"node_modules/@lancedb/**/*",
"out/tree-sitter.wasm",
"out/tree-sitter-wasms/*"
],
"targets": [
"node18-darwin-arm64"
],
"outputPath": "bin"
},
"scripts": {
"test": "jest",
"build": "node build.js",
"build:old": "ncc build src/index.ts -o out && pkg .",
"build:dev": "tsc",
"esbuild": "node build.js --esbuild-only"
},
"author": "",
"license": "Apache-2.0",
"devDependencies": {
"@biomejs/biome": "1.6.4",
"@types/follow-redirects": "^1.14.4",
"@types/jest": "^29.5.12",
"@types/uuid": "^9.0.8",
"@vercel/ncc": "^0.38.1",
"esbuild": "0.19.11",
"jest": "^29.7.0",
"pkg": "^5.8.1",
"rimraf": "^5.0.7",
"ts-jest": "^29.1.4",
"typescript": "^5.3.3"
},
"dependencies": {
"@octokit/rest": "^20.0.2",
"commander": "^12.0.0",
"core": "file:../core",
"follow-redirects": "^1.15.5",
"mac-ca": "^2.0.3",
"ncp": "^2.0.0",
"node-fetch": "^3.3.2",
"posthog-node": "^3.6.3",
"system-ca": "^1.0.2",
"uuid": "^9.0.1",
"vectordb": "^0.4.20",
"win-ca": "^3.5.1"
}
}