-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 927 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 927 Bytes
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
{
"name": "@platformatic/http-handler",
"private": true,
"version": "1.0.0",
"main": "index.js",
"types": "index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/platformatic/http-handler.git"
},
"napi": {
"binaryName": "http-handler",
"targets": [
"aarch64-apple-darwin",
"x86_64-apple-darwin",
"x86_64-unknown-linux-gnu"
]
},
"license": "MIT",
"devDependencies": {
"@napi-rs/cli": "^3.0.4",
"@oxc-node/core": "^0.0.35",
"oxlint": "^0.18.0"
},
"engines": {
"node": ">= 10"
},
"scripts": {
"artifacts": "napi artifacts",
"build": "npm run build:debug -- --release",
"build:debug": "napi build --platform --features napi-support",
"prepublishOnly": "napi prepublish -t npm",
"lint": "oxlint",
"test": "node --test test/**.test.mjs",
"universal": "napi universal",
"version": "napi version"
}
}