-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.27 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.27 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
{
"name": "winter-compat",
"version": "0.1.9",
"description": "Small compability layer for frameworks",
"keywords": [],
"repository": {
"type": "git",
"url": "git+https://github.com/re-utils/winter-compat.git"
},
"license": "MIT",
"type": "module",
"scripts": {
"task": "bun scripts/task.ts",
"fmt": "biome format .",
"lint": "biome check .",
"build:test": "bun task build && bun test",
"build:publish": "bun task build && bun task report-size && bun task publish"
},
"exports": {
".": {
"types": "./types.d.ts",
"node": "./node.js",
"bun": "./bun.js",
"deno": "./deno.js"
},
"./node": "./node.js",
"./bun": "./bun.js",
"./deno": "./deno.js",
"./uws": "./uws.js",
"./utils": "./utils.js",
"./config": "./config.js"
},
"devDependencies": {
"@biomejs/biome": "^2.1.4",
"@cloudflare/workers-types": "^4.20250813.0",
"@mapl/web": "^0.1.12",
"@types/bun": "^1.2.19",
"@types/deno": "^2.3.0",
"@types/node": "^24.2.1",
"mitata": "^1.0.34",
"oxc-minify": "^0.64.0",
"oxc-transform": "^0.65.0",
"typescript": "^5.9.2",
"udic": "^1.2.2",
"uWebSockets.js": "uNetworking/uWebSockets.js#v20.52.0"
},
"trustedDependencies": [
"@biomejs/biome"
]
}