-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.25 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
{
"name": "wds-use-vite",
"version": "0.1.0",
"description": "Web Dev Server middleware that uses Vite to transform and serve requests.",
"type": "module",
"main": "dist/index.js",
"module": "dist/index.js",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"types": "./dist/index.d.ts",
"scripts": {
"build": "tsc"
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/mvromer/wds-use-vite.git"
},
"keywords": [
"wds",
"wtr",
"vite",
"middleware"
],
"author": "Michael Romer",
"license": "MIT",
"bugs": {
"url": "https://github.com/mvromer/wds-use-vite/issues"
},
"homepage": "https://github.com/mvromer/wds-use-vite#readme",
"dependencies": {
"koa-connect": "^2.1.0"
},
"devDependencies": {
"@types/koa": "^2.13.5",
"@typescript-eslint/eslint-plugin": "^5.45.0",
"@typescript-eslint/parser": "^5.45.0",
"eslint": "^8.28.0",
"eslint-config-prettier": "^8.5.0",
"prettier": "^2.8.0",
"typescript": "^4.9.3",
"vite": "^4.4.9"
},
"peerDependencies": {
"vite": "3 || 4",
"@web/dev-server": "0.1"
},
"prettier": {
"semi": true,
"singleQuote": true
}
}