-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.06 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.06 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
{
"name": "vite-plugin-comlink",
"version": "5.3.0",
"description": "Comlink for Vite",
"repository": {
"type": "git",
"url": "git+https://github.com/mathe42/vite-plugin-comlink.git"
},
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"module": "dist/index.js",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./client": {
"types": "./client.d.ts"
},
"./symbol": {
"types": "./dist/symbol.d.ts",
"default": "./dist/symbol.js"
}
},
"author": "Sebastian Krüger (@mathe42)",
"license": "MIT",
"scripts": {
"build": "tsup",
"prepublishOnly": "npm run build"
},
"dependencies": {
"json5": "2.2.3",
"magic-string": "0.30.17",
"source-map": "^0.7.4"
},
"devDependencies": {
"@types/node": "22.17.0",
"comlink": "4.4.2",
"tsup": "8.5.0",
"typescript": "5.9.2",
"vite": "7.0.6"
},
"peerDependencies": {
"comlink": "^4.3.1",
"vite": ">=4"
},
"volta": {
"node": "22.18.0"
}
}