-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
53 lines (53 loc) · 1.22 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
{
"name": "vite-plugin-json-server",
"version": "0.1.1",
"type": "module",
"description": "A plugin that integrates json-server with Vite.js, providing a simple way to mock REST APIs during development.",
"keywords": [
"vite",
"json",
"json-server",
"server",
"mock",
"mockAPI"
],
"files": [
"dist",
"LICENSE"
],
"license": "MIT",
"author": "Willyams Yujra <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/yracnet/vite-plugin-json-server"
},
"main": "dist/index.js",
"module": "dist/index.cjs",
"types": "dist/index.d.ts",
"exports": {
".": {
"require": "./dist/index.js",
"import": "./dist/index.cjs",
"types": "./dist/index.d.ts"
}
},
"homepage": "https://github.com/yracnet/vite-plugin-json-server",
"bugs": "https://github.com/yracnet/vite-plugin-json-server/issues",
"scripts": {
"build": "tsup"
},
"dependencies": {
"json-server": "^0.17.3"
},
"peerDependencies": {
"vite": "^4.0.0"
},
"devDependencies": {
"@types/connect": "^3.4.35",
"@types/json-server": "^0.14.4",
"@types/node": "^18.11.15",
"tsup": "^6.5.0",
"typescript": "^4.9.3",
"vite": "^4.0.0"
}
}