-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.16 KB
/
Copy pathpackage.json
File metadata and controls
85 lines (85 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "ohttp-ts",
"version": "0.3.5",
"description": "Oblivious HTTP (RFC 9458) implementation with chunked extension support",
"type": "module",
"sideEffects": false,
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.mts",
"exports": {
".": {
"import": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
}
},
"files": [
"dist"
],
"scripts": {
"build": "tsdown --format esm,cjs --sourcemap --target es2022",
"examples": "tsx examples/index.ts",
"test": "vitest run",
"test:browser": "vitest run --config vitest.browser.config.ts",
"test:watch": "vitest",
"bench": "vitest bench",
"bench:browser": "vitest bench --config vitest.browser.config.ts",
"bench:concurrency": "vitest bench --run bench/concurrency.bench.ts",
"bench:overlap": "tsx bench/overlap.ts",
"bench:alloc": "node --expose-gc --import tsx bench/alloc.ts",
"bench:profile": "node --import tsx bench/profile.ts",
"bench:trace": "node --import tsx bench/trace.ts",
"lint": "biome check src test",
"format": "biome format --write src test",
"typecheck": "tsc --noEmit && tsc --noEmit -p tsconfig.bench.json"
},
"keywords": [
"ohttp",
"oblivious-http",
"hpke",
"privacy",
"encryption",
"rfc9458",
"cloudflare-workers"
],
"author": "Thibault Meunier",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/thibmeu/ohttp-ts.git"
},
"bugs": {
"url": "https://github.com/thibmeu/ohttp-ts/issues"
},
"homepage": "https://github.com/thibmeu/ohttp-ts#readme",
"dependencies": {
"bhttp-ts": "0.4.5",
"hpke": "1.1.2",
"quicvarint": "0.1.7"
},
"devDependencies": {
"@biomejs/biome": "2.4.16",
"@hpke/chacha20poly1305": "1.8.0",
"@panva/hpke-noble": "1.1.2",
"@playwright/test": "1.60.0",
"@types/node": "25.9.3",
"@vitest/browser": "4.1.8",
"@vitest/browser-playwright": "4.1.8",
"esbuild": "0.28.0",
"esbuild-visualizer": "0.7.0",
"tsdown": "0.22.2",
"tsx": "4.22.4",
"typescript": "6.0.3",
"vite": "8.0.16",
"vitest": "4.1.8"
},
"engines": {
"node": ">=24"
}
}