-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.01 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
{
"name": "vite-plugin-faker",
"version": "1.3.5",
"description": "A mock plugin for vite",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsup src/index.ts --dts --format cjs,esm",
"dev": "npm run build -- --watch",
"lint": "eslint src/* --fix"
},
"keywords": [
"vite",
"mock",
"hmr",
"vite-plugin"
],
"author": "JserWang",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/JserWang/vite-plugin-faker"
},
"bugs": {
"url": "https://github.com/JserWang/vite-plugin-faker/issues"
},
"homepage": "https://github.com/JserWang/vite-plugin-faker/tree/master/#readme",
"dependencies": {
"chalk": "^4.1.0",
"ts-mock-generator": "^1.0.11",
"typescript": "^4.2.3"
},
"devDependencies": {
"@jserwang/eslint-config": "^0.1.3",
"@types/node": "^14.14.35",
"eslint": "^7.25.0",
"tsup": "^4.10.1",
"vite": "^2.2.4"
}
}