-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 2.16 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 loc) · 2.16 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
54
55
56
57
58
59
60
{
"name": "@harperfast/symphony",
"version": "1.2.0",
"description": "High-performance TLS proxy with SNI routing — Rust/napi-rs, Linux",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"symphony-server": "dist/server.js"
},
"files": [
"dist/",
"symphony.*.node"
],
"napi": {
"name": "symphony",
"triples": {
"defaults": false,
"additional": [
"x86_64-unknown-linux-gnu",
"x86_64-unknown-linux-musl",
"aarch64-unknown-linux-gnu",
"aarch64-unknown-linux-musl",
"x86_64-apple-darwin",
"aarch64-apple-darwin"
]
}
},
"scripts": {
"build": "tsc -p tsconfig.json && napi build --platform --js false --dts ts/addon.d.ts --release",
"build:debug": "tsc -p tsconfig.json && napi build --platform --js false --dts ts/addon.d.ts",
"artifacts": "napi artifacts",
"prepublishOnly": "napi prepublish -t npm",
"version": "napi version",
"test": "tsc -p tsconfig.test.json && node --test --test-force-exit dist-test/__test__/protection.spec.js dist-test/__test__/proxy.spec.js dist-test/__test__/proxy-protocol-v2.spec.js dist-test/__test__/mtls.spec.js dist-test/__test__/suspended.spec.js dist-test/__test__/http-listener.spec.js dist-test/__test__/server.spec.js dist-test/__test__/h2-dispatch.spec.js dist-test/__test__/metrics.spec.js dist-test/__test__/copy-buffers.spec.js dist-test/__test__/route-protocol.spec.js",
"test:integration": "tsc -p tsconfig.test.json && node --test --test-force-exit dist-test/__test__/harper-integration.spec.js",
"benchmark": "tsc -p tsconfig.test.json && node dist-test/__test__/benchmark.js",
"benchmark:throughput": "tsc -p tsconfig.test.json && node dist-test/__test__/benchmark-throughput.js",
"diagnostic:keepalive": "tsc -p tsconfig.test.json && node dist-test/__test__/diagnostic-uds-keepalive.js"
},
"devDependencies": {
"@harperfast/integration-testing": "^0.2.0",
"@napi-rs/cli": "^2.18.0",
"@types/node": "^20.19.39",
"harper": "*",
"typescript": "^5.8.0",
"yaml": "^2.0.0"
},
"engines": {
"node": ">= 18"
},
"os": [
"linux",
"darwin"
],
"license": "Elastic-2.0",
"repository": {
"type": "git",
"url": "https://github.com/HarperFast/symphony"
}
}