-
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) · 997 Bytes
/
Copy pathpackage.json
File metadata and controls
41 lines (41 loc) · 997 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": "callink",
"version": "1.0.1",
"description": "A Worker → Main communication library inspired by Comlink",
"main": "dist/callink.js",
"types": "dist/callink.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"prepublishOnly": "npm run build && cp README.npm.md README.md",
"postpublish": "git checkout -- README.md",
"test": "echo \"No tests yet\" && exit 0"
},
"keywords": [
"worker",
"typescript",
"communication",
"webworker",
"comlink"
],
"author": "Yuchan Oh <oyc0401@gmail.com> (https://github.com/oyc0401)",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/oyc0401/callink.git"
},
"bugs": {
"url": "https://github.com/oyc0401/callink/issues"
},
"homepage": "https://github.com/oyc0401/callink#readme",
"engines": {
"node": ">=18"
},
"devDependencies": {
"typescript": "^5.0.0",
"@types/node": "^20.0.0",
"ts-node": "^10.9.1"
}
}