-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 910 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 910 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
39
40
41
{
"name": "live-sse",
"version": "0.2.1",
"description": "Do live updates with SSE",
"keywords": [
"sse",
"sync"
],
"repository": {
"type": "github",
"url": "https://github.com/re-utils/live-sse"
},
"license": "MIT",
"type": "module",
"main": "./index.js",
"types": "./index.d.ts",
"scripts": {
"task": "bun scripts/task.ts",
"fmt": "biome format .",
"build:test": "bun task build && bun test",
"build:publish": "bun task build && bun task report-size && bun task publish"
},
"exports": {
".": {
"default": "./index.js",
"bun": "./bun/index.js"
}
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@types/bun": "^1.2.10",
"mitata": "^1.0.34",
"oxc-minify": "^0.64.0",
"oxc-transform": "^0.65.0",
"tsx": "^4.19.3",
"typescript": "^5.8.3"
},
"trustedDependencies": [
"@biomejs/biome"
]
}