-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.5 KB
/
package.json
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
{
"name": "@reactodia/worker-proxy",
"version": "0.1.0",
"description": "Transparently mapped Web Worker proxy objects for easy background tasks",
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/reactodia/worker-proxy.git"
},
"keywords": [
"web-worker",
"proxy",
"typescript"
],
"author": {
"name": "Alexey Morozov",
"url": "https://github.com/AlexeyMz"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/reactodia/worker-proxy/issues"
},
"homepage": "https://github.com/reactodia/worker-proxy#readme",
"scripts": {
"build": "tsc --project tsconfig.build.json",
"test": "vitest",
"typecheck": "tsc",
"clean": "rimraf dist"
},
"devDependencies": {
"@vitest/browser": "^3.0.8",
"playwright": "^1.51.0",
"rimraf": "^6.0.1",
"typescript": "^5.8.2",
"vitest": "^3.0.8"
},
"type": "module",
"main": "dist/workers.js",
"typings": "dist/workers.d.ts",
"exports": {
".": {
"import": "./dist/workers.js",
"types": "./dist/workers.d.ts"
},
"./protocol": {
"import": "./dist/protocol.js",
"types": "./dist/protocol.d.ts"
}
},
"files": [
"dist",
"src",
"CHANGELOG.md",
"LICENSE.md",
"package.json",
"README.md",
"tsconfig.json",
"tsconfig.build.json"
]
}