-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
69 lines (69 loc) · 1.85 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
{
"name": "@ksg/vite-plugin-swagger-mock",
"version": "0.0.1",
"description": "A mock plugin for vite and compatible with swagger3",
"main": "dist/index.js",
"files": [
"dist",
"es"
],
"engines": {
"node": ">=12.0.0"
},
"scripts": {
"clean": "rimraf dist",
"dev": " tsup src/index.ts --dts --format cjs,esm --watch",
"build": "npm run clean && tsup src/index.ts --dts --format cjs,esm",
"log": "conventional-changelog -p angular -i CHANGELOG.md -s",
"prepublishOnly": "npm run build",
"lint:lint-staged": "lint-staged -c ./.husky/lintstagedrc.js",
"lint:eslint": "eslint \"src/**/*.{ts,tsx}\" --fix",
"prepare": "husky install"
},
"keywords": [
"vite",
"mock",
"swagger"
],
"repository": {
"type": "git",
"url": "[email protected]:WsmDyj/vite-plugin-swagger-mock.git"
},
"homepage": "https://github.com/WsmDyj/vite-plugin-swagger-mock.git",
"author": "wusimin",
"license": "MIT",
"peerDependencies": {
"mockjs": ">=1.1.0",
"vite": ">=2.0.0"
},
"devDependencies": {
"@commitlint/config-conventional": "^17.4.4",
"@types/connect": "^3.4.35",
"@types/mockjs": "^1.0.7",
"@types/node": "^18.15.3",
"@types/prettier": "^2.7.2",
"@typescript-eslint/eslint-plugin": "^5.55.0",
"@typescript-eslint/parser": "^5.55.0",
"axios": "^1.3.4",
"commitlint": "^17.4.4",
"conventional-changelog-cli": "^2.2.2",
"eslint": "^8.36.0",
"eslint-config-prettier": "^8.7.0",
"husky": "^7.0.1",
"lint-staged": "^13.2.0",
"prettier": "^2.8.4",
"rimraf": "^4.4.0",
"tsup": "^6.6.3",
"typescript": "^4.9.5",
"vite": "^4.1.4"
},
"dependencies": {
"chalk": "^4.0.0",
"chokidar": "^3.5.3",
"connect": "^3.7.0",
"consola": "^2.15.3",
"esbuild": "^0.17.11",
"mockjs": ">=1.1.0",
"path-to-regexp": "^6.2.1"
}
}