-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.62 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.62 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
{
"name": "@hyperlight-dev/js-host-api",
"version": "0.2.0",
"description": "Node.js API bindings for Hyperlight JS",
"main": "lib.js",
"types": "index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/hyperlight-dev/hyperlight-js.git"
},
"homepage": "https://github.com/hyperlight-dev/hyperlight-js#readme",
"bugs": {
"url": "https://github.com/hyperlight-dev/hyperlight-js/issues"
},
"napi": {
"binaryName": "js-host-api",
"targets": [
"x86_64-unknown-linux-gnu",
"x86_64-unknown-linux-musl",
"x86_64-pc-windows-msvc"
]
},
"license": "Apache-2.0",
"optionalDependencies": {
"@hyperlight-dev/js-host-api-linux-x64-gnu": "0.2.0",
"@hyperlight-dev/js-host-api-linux-x64-musl": "0.2.0",
"@hyperlight-dev/js-host-api-win32-x64-msvc": "0.2.0"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@napi-rs/cli": "^3.6.1",
"eslint": "^10.2.0",
"prettier": "^3.8.1",
"vitest": "^4.1.3"
},
"engines": {
"node": ">= 18"
},
"scripts": {
"build": "napi build --platform --release",
"build:debug": "napi build --platform",
"test": "vitest run",
"test:watch": "vitest",
"lint": "eslint lib.js tests/ examples/",
"lint:fix": "eslint lib.js tests/ examples/ --fix",
"fmt": "prettier --write \"lib.js\" \"tests/**/*.js\" \"examples/**/*.js\" \"*.config.{js,mjs}\"",
"fmt:check": "prettier --check \"lib.js\" \"tests/**/*.js\" \"examples/**/*.js\" \"*.config.{js,mjs}\"",
"prepublishOnly": "napi prepublish -t npm --skip-optional-publish",
"artifacts": "napi artifacts",
"version": "napi version"
}
}