-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
53 lines (53 loc) · 1.21 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
{
"name": "vite-plugin-comlink",
"version": "5.1.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.mjs",
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./client": {
"types": "./client.d.ts"
},
"./symbol": {
"types": "./dist/symbol.d.ts",
"import": "./dist/symbol.mjs",
"require": "./dist/symbol.js"
}
},
"author": "Sebastian Krüger (@mathe42)",
"license": "MIT",
"scripts": {
"build": "tsup src/index.ts --dts --format cjs,esm && tsup src/symbol.ts --dts --format cjs,esm",
"prepublishOnly": "pnpm build"
},
"dependencies": {
"json5": "2.2.3",
"magic-string": "0.30.12",
"source-map": "^0.7.4"
},
"devDependencies": {
"@types/node": "20.17.1",
"comlink": "4.4.1",
"tsup": "8.3.5",
"typescript": "5.6.3",
"vite": "5.4.10"
},
"peerDependencies": {
"comlink": "^4.3.1",
"vite": ">=2.9.6"
},
"volta": {
"node": "20.18.0"
}
}