-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 992 Bytes
/
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
{
"name": "vite-plugin-bundled-entry",
"version": "0.5.1",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
"import": "./dist/index.mjs",
"require": "./dist/index.js"
},
"license": "MIT",
"author": "divriots",
"files": [
"dist"
],
"keywords": [
"vite",
"vite-plugin"
],
"scripts": {
"build": "tsup src/index.ts --format cjs,esm --dts"
},
"engines": {
"node": ">=12.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/divriots/vite-plugin-bundled-entry.git"
},
"bugs": {
"url": "https://github.com/divriots/vite-plugin-bundled-entry/issues"
},
"homepage": "https://github.com/divriots/vite-plugin-bundled-entry",
"devDependencies": {
"@types/node": "^16.11.11",
"tsup": "^5.7.1",
"typescript": "^4.4.4",
"vite": "~2.7.0"
},
"dependencies": {
"esbuild": "^0.14.10"
},
"peerDependencies": {
"vite": "~2.7.0"
}
}