-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.09 KB
/
Copy pathpackage.json
File metadata and controls
54 lines (54 loc) · 1.09 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
{
"name": "@bluehotdog/reworker",
"version": "0.0.2",
"description": "Type-safe, chunked message passing for WebWorkers, ServiceWorkers, and browser extensions using GADTs with zero runtime dependencies",
"keywords": [
"rescript",
"chrome-extension",
"webworker",
"serviceworker",
"wxt",
"browser-extension",
"message-passing",
"messaging",
"gadt",
"type-safe",
"chunking",
"framework-agnostic",
"zero-dependencies"
],
"author": "BlueHotDog",
"license": "MIT",
"homepage": "https://github.com/BlueHotDog/reworker#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/BlueHotDog/reworker.git"
},
"bugs": {
"url": "https://github.com/BlueHotDog/reworker/issues"
},
"files": [
"src/**/*.res",
"src/**/*.resi",
"rescript.json",
"README.md",
"LICENSE",
"CHANGELOG.md",
"AGENTS.md",
"TESTING.md"
],
"engines": {
"node": ">=20.11.0"
},
"sideEffects": false,
"dependencies": {},
"peerDependencies": {
"rescript": "^12.0.0-beta.12"
},
"devDependencies": {
"rescript": "^12.0.0-beta.12"
},
"publishConfig": {
"access": "public"
}
}