-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 815 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 815 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
{
"name": "vite-plugin-optimizer",
"version": "1.4.3",
"description": "Manually Pre-Bundling of Vite",
"main": "index.js",
"types": "index.d.ts",
"exports": {
".": {
"import": "./index.mjs",
"require": "./index.js"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/vite-plugin/vite-plugin-optimizer.git"
},
"author": "草鞋没号 <308487730@qq.com>",
"license": "MIT",
"scripts": {
"build": "node build.js",
"test": "node test/index.mjs",
"prepublishOnly": "npm run build"
},
"devDependencies": {
"lib-esm": "^0.3.0",
"vite": "^3.2.x"
},
"keywords": [
"vite",
"build",
"plugin",
"external",
"optimizer",
"Pre-Bundling"
],
"files": [
"index.js",
"index.mjs",
"index.d.ts"
]
}