-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.27 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.27 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-webpack-prebundle",
"version": "0.1.0",
"description": "A Webpack-based pre-bundle solution, mainly used for adapting Node.js and Electron",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
},
"./*": "./*"
},
"repository": "https://github.com/vite-plugin/vite-plugin-webpack-prebundle.git",
"author": "野鸡没名 <asd308487730@gmail.com>",
"license": "MIT",
"scripts": {
"dev": "vite build --watch",
"build": "vite build",
"types": "tsc --emitDeclarationOnly",
"prepublishOnly": "npm run build && npm run test",
"build:test": "vite build -c test/fixtures/vite.config.ts",
"test": "vitest run"
},
"dependencies": {
"lib-esm": "~0.4.2",
"webpack": "^5.70.0"
},
"devDependencies": {
"@vercel/webpack-asset-relocator-loader": "1.7.3",
"file-type": "^19.0.0",
"node-loader": "^2.0.0",
"sqlite3": "^5.1.7",
"typescript": "^5.5.2",
"vite": "^5.3.2",
"vite-plugin-utils": "^0.4.3",
"vitest": "^1.6.0"
},
"files": [
"dist"
],
"keywords": [
"vite",
"plugin",
"webpack",
"prebundle",
"electron",
"node"
]
}