-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 983 Bytes
/
Copy pathpackage.json
File metadata and controls
46 lines (46 loc) · 983 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
42
43
44
45
46
{
"name": "@rewrite0/typed-worker",
"version": "0.0.4",
"author": "Rewrite0",
"repository": "https://github.com/rewrite0/typed-worker",
"keywords": [
"worker",
"web-worker",
"typescript",
"type-safe",
"typed",
"async",
"promise",
"transferable"
],
"type": "module",
"main": "./dist/index.js",
"files": [
"dist"
],
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"scripts": {
"build": "tsdown --minify --format esm --target es2015 --platform neutral",
"test": "vitest --browser.headless"
},
"devDependencies": {
"@types/node": "^24.10.1",
"@vitest/browser": "^4.0.15",
"@vitest/browser-playwright": "^4.0.15",
"playwright": "^1.57.0",
"tsdown": "^0.17.0",
"typescript": "~5.9.3",
"vite": "npm:rolldown-vite@7.2.5",
"vitest": "^4.0.15"
},
"pnpm": {
"overrides": {
"vite": "npm:rolldown-vite@7.2.5"
}
}
}