-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 1.01 KB
/
package.json
File metadata and controls
34 lines (34 loc) · 1.01 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
{
"name": "@hyperlight/js-host-api",
"version": "0.17.0",
"description": "Node.js API bindings for Hyperlight JS",
"main": "lib.js",
"types": "index.d.ts",
"napi": {
"binaryName": "js-host-api"
},
"license": "Apache-2.0",
"devDependencies": {
"@eslint/js": "^10.0.1",
"@napi-rs/cli": "^3.5.1",
"eslint": "^10.1.0",
"prettier": "^3.8.1",
"vitest": "^4.1.0"
},
"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",
"artifacts": "napi artifacts",
"version": "napi version"
}
}