-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 938 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
{
"name": "mini-vite",
"version": "1.0.0",
"description": "",
"main": "index.js",
"bin": {
"mini-vite": "bin/index.js"
},
"scripts": {
"dev": "mini-vite dev",
"start": "tsup --watch",
"build": "tsup --minify"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/connect": "^3.4.38",
"@types/debug": "^4.1.12",
"@types/fs-extra": "^11.0.4",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@types/resolve": "^1.20.6",
"mini-vite": "./",
"tsup": "^8.0.2"
},
"dependencies": {
"cac": "^6.7.14",
"connect": "^3.7.0",
"debug": "^4.3.4",
"es-module-lexer": "^1.4.1",
"esbuild": "^0.20.1",
"fs-extra": "^11.2.0",
"magic-string": "^0.30.7",
"picocolors": "^1.0.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"resolve": "^1.22.8",
"rollup": "^4.12.0",
"typescript": "^5.3.3"
}
}