-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
81 lines (81 loc) · 2.12 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "@jinjiang/vlite",
"version": "1.1.2",
"description": "Lite demo server, inspired by Vite",
"type": "module",
"types": "lib/index.d.ts",
"bin": {
"vlite": "lib/bin.js"
},
"main": "lib/index.js",
"files": [
"tsconfig.json",
"bin/*",
"lib/*",
"README.md",
"LICENSE"
],
"scripts": {
"prepare": "pnpm run build",
"dev": "tsc --watch",
"lint": "tsc --noEmit",
"demo": "DEBUG=1 node ./lib/bin.js ./examples/vue",
"demo:react": "DEBUG=1 node ./lib/bin.js ./examples/react",
"demo:build": "DEBUG=1 node ./lib/bin.js ./examples/vue --build",
"demo:build:react": "DEBUG=1 node ./lib/bin.js ./examples/react --build",
"demo:bundle": "DEBUG=1 node ./lib/bin.js ./examples/vue --bundle",
"demo:bundle:react": "DEBUG=1 node ./lib/bin.js ./examples/react --bundle",
"run": "DEBUG=1 node ./lib/bin.js",
"run:version": "DEBUG=1 node ./lib/bin.js --version",
"run:help": "DEBUG=1 node ./lib/bin.js --help",
"build": "tsc",
"prepublish": "pnpm run build"
},
"keywords": [
"vite",
"lite",
"server",
"static",
"demo",
"vue",
"react",
"typescript",
"css"
],
"author": "Jinjiang <zhaojinjiang@me.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/Jinjiang/vlite.git"
},
"bugs": {
"url": "https://github.com/Jinjiang/vlite/issues"
},
"homepage": "https://github.com/Jinjiang/vlite#readme",
"devDependencies": {
"@types/express": "^4.17.21",
"@types/fs-extra": "^11.0.4",
"@types/minimist": "^1.2.5",
"@types/node": "^20.11.20",
"@types/react": "^18.2.59",
"@types/react-dom": "^18.2.19",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"dependencies": {
"@rolldown/node": "^0.0.5",
"chalk": "^5.3.0",
"express": "^4.18.2",
"fs-extra": "^11.2.0",
"htmlparser2": "^9.1.0",
"mime": "^4.0.1",
"minimist": "^1.2.8",
"parse-imports": "^1.1.2",
"postcss": "^8.4.35",
"postcss-modules": "^6.0.0",
"sucrase": "^3.35.0",
"typescript": "^5.3.3",
"vue": "^3.4.19",
"vue-simple-compiler": "^0.0.7"
}
}