-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.56 KB
/
Copy pathpackage.json
File metadata and controls
53 lines (53 loc) · 1.56 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
51
52
53
{
"name": "@a3s-lab/code",
"version": "4.2.3",
"description": "A3S Code - Native Node.js bindings for the coding-agent runtime",
"main": "index.js",
"types": "index.d.ts",
"napi": {
"binaryName": "a3s-code",
"targets": [
"aarch64-apple-darwin",
"x86_64-unknown-linux-gnu",
"x86_64-unknown-linux-musl",
"aarch64-unknown-linux-gnu",
"aarch64-unknown-linux-musl",
"x86_64-pc-windows-msvc"
]
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/A3S-Lab/Code"
},
"files": [
"index.js",
"index.d.ts",
"generated.d.ts",
"extra-types.d.ts",
"*.node"
],
"devDependencies": {
"@napi-rs/cli": "^2",
"@types/node": "^25.3.3",
"tsx": "^4.21.0",
"typescript": "^5.9.3"
},
"scripts": {
"artifacts": "napi artifacts",
"build": "napi build --platform --release --js index.js --dts generated.d.ts",
"build:debug": "napi build --platform --js index.js --dts generated.d.ts",
"prepublishOnly": "napi prepublish -t npm",
"test": "node test.mjs && node test_serve.mjs",
"test:types": "tsc --noEmit --module nodenext --moduleResolution nodenext --target es2022 --strict --skipLibCheck test-types.ts",
"test:helpers": "node test-helpers.mjs"
},
"optionalDependencies": {
"@a3s-lab/code-darwin-arm64": "4.2.2",
"@a3s-lab/code-linux-x64-gnu": "4.2.2",
"@a3s-lab/code-linux-x64-musl": "4.2.2",
"@a3s-lab/code-linux-arm64-gnu": "4.2.2",
"@a3s-lab/code-linux-arm64-musl": "4.2.2",
"@a3s-lab/code-win32-x64-msvc": "4.2.2"
}
}