-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
48 lines (48 loc) · 1.16 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
{
"name": "@vavite/expose-vite-dev-server",
"version": "5.1.0",
"type": "module",
"files": [
"dist",
"*.d.ts"
],
"exports": {
".": {
"import": "./dist/index.js"
},
"./vite-dev-server": {
"import": "./dist/vite-dev-server.js"
}
},
"typesVersions": {
"*": {
"*": [
"dist/*.d.ts"
]
}
},
"description": "Vite plugin for exposing Vite's development server to user code",
"author": "Fatih Aygün <[email protected]>",
"repository": "github:cyco130/vavite",
"license": "MIT",
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"prepack": "rm -rf dist && pnpm build",
"test": "pnpm run test:typecheck && pnpm run test:lint && pnpm run test:package",
"test:typecheck": "tsc -p tsconfig.json --noEmit",
"test:lint": "eslint . --max-warnings 0 --ignore-pattern dist",
"test:package": "publint --strict"
},
"peerDependencies": {
"vite": "^2.8.1 || 3 || 4 || 5 || 6"
},
"devDependencies": {
"@cyco130/eslint-config": "^5.0.1",
"@types/node": "^18.19.67",
"eslint": "^9.16.0",
"tsup": "^8.3.5",
"typescript": "^5.7.2",
"vite": "^5.4.11"
}
}