-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.34 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.34 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
{
"name": "hyperlight-analysis",
"version": "0.1.0",
"description": "Secure code analysis via Hyperlight micro-VM isolation",
"main": "index.js",
"types": "index.d.ts",
"files": [
"index.js",
"index.d.ts",
"*.node"
],
"napi": {
"binaryName": "hyperlight-analysis",
"targets": [
"x86_64-unknown-linux-gnu",
"x86_64-unknown-linux-musl",
"x86_64-pc-windows-msvc"
]
},
"scripts": {
"build": "napi build --platform --release --manifest-path host/Cargo.toml && node -e \"require('fs').readdirSync('host').filter(f=>f.endsWith('.node')).forEach(f=>require('fs').copyFileSync('host/'+f,f))\"",
"build:debug": "napi build --platform --manifest-path host/Cargo.toml && node -e \"require('fs').readdirSync('host').filter(f=>f.endsWith('.node')).forEach(f=>require('fs').copyFileSync('host/'+f,f))\"",
"test": "vitest run",
"test:watch": "vitest",
"prepublishOnly": "napi prepublish -t npm"
},
"devDependencies": {
"@napi-rs/cli": "^3.6.2",
"vitest": "^4.1.4"
},
"engines": {
"node": ">= 18"
},
"repository": {
"type": "git",
"url": "https://github.com/anthropics/hyperagent.git",
"directory": "deps/hyperlight-analysis-guest"
},
"license": "Apache-2.0",
"keywords": [
"hyperlight",
"security",
"code-analysis",
"sandbox",
"micro-vm"
]
}