-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.58 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
{
"name": "vite-plugin-serve-static",
"version": "0.0.0",
"description": "A Vite plugin for serving static files during local development",
"repository": {
"type": "git",
"url": "git+https://github.com/reifiedbeans/vite-plugin-serve-static.git"
},
"license": "MIT",
"homepage": "https://github.com/reifiedbeans/vite-plugin-serve-static",
"keywords": [
"vite-plugin"
],
"type": "module",
"files": [
"dist"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc && tsup",
"clean": "rimraf dist",
"format": "prettier --write .",
"format:check": "prettier --check .",
"lint": "eslint --cache --max-warnings=0 .",
"lint:fix": "eslint --fix --cache --max-warnings=0 .",
"prepack": "npm-run-all build test lint format:check",
"test": "vitest --run"
},
"peerDependencies": {
"vite": "^5.0.0 || ^6.0.0"
},
"dependencies": {
"cors": "^2.8.5",
"mime-types": "^2.1.35"
},
"devDependencies": {
"@trivago/prettier-plugin-sort-imports": "^5.2.0",
"@types/cors": "^2.8.17",
"@types/mime-types": "^2.1.4",
"@typescript-eslint/eslint-plugin": "^8.18.0",
"@typescript-eslint/parser": "^8.18.0",
"conventional-changelog-conventionalcommits": "^8.0.0",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.0",
"npm-run-all": "^4.1.5",
"prettier": "^3.4.2",
"rimraf": "^6.0.1",
"tsup": "^8.3.5",
"typescript": "~5.7.2",
"vitest": "^2.1.8"
},
"publishConfig": {
"access": "public"
},
"release": {
"preset": "conventionalcommits"
}
}