-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.75 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 1.75 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "tsdown-plugin-worker",
"version": "0.1.9",
"description": "Worker plugin for tsdown - handles ?worker imports and new URL() patterns",
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./types.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
},
"./types": "./types.d.ts"
},
"files": [
"dist",
"types.d.ts"
],
"scripts": {
"test": "bun run typecheck && vitest",
"typecheck:src": "bunx tsc --noEmit -p tsconfig.json",
"typecheck:fixtures": "bunx tsc --noEmit -p tsconfig.fixtures.json",
"typecheck": "bun run typecheck:src && bun run typecheck:fixtures",
"build": "tsdown",
"prepublishOnly": "bun run build",
"release": "bumpp"
},
"keywords": [
"tsdown",
"rolldown",
"worker",
"sharedworker",
"plugin"
],
"author": "will-lol",
"license": "MIT",
"devDependencies": {
"@sxzz/test-utils": "^0.5.15",
"@types/bun": "latest",
"bumpp": "^10.0.0",
"vitest": "^4.0.18"
},
"peerDependencies": {
"typescript": "^5"
},
"dependencies": {
"es-module-lexer": "^2.0.0",
"magic-string": "^0.30.21",
"picocolors": "^1.1.1",
"rolldown": "^1.0.0-rc.3",
"strip-literal": "^3.1.0",
"tsdown": "^0.20.3"
},
"directories": {
"test": "tests"
},
"repository": {
"type": "git",
"url": "git+https://github.com/will-lol/tsdown-plugin-worker.git"
},
"bugs": {
"url": "https://github.com/will-lol/tsdown-plugin-worker/issues"
},
"homepage": "https://github.com/will-lol/tsdown-plugin-worker#readme"
}