-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 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
45
46
{
"name": "vite-plugin-apimock",
"version": "1.0.0",
"description": "A Vite plugin for API mocking.",
"keywords": [
"vite",
"vite-plugin",
"apimock"
],
"author": "pangxiaoli <qiubit@qiubit.cc>",
"homepage": "https://github.com/pangxiaoli/vite-plugin-ApiMock",
"repository": {
"type": "git",
"url": "https://github.com/pangxiaoli/vite-plugin-ApiMock"
},
"bugs": "https://github.com/pangxiaoli/vite-plugin-ApiMock/issues",
"license": "MIT",
"private": false,
"type": "module",
"scripts": {
"test": "vitest",
"build": "vite build",
"build:type": "tsc"
},
"files": [
"./dist"
],
"mian": "./dist/index.umd.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"require": "./dist/index.umd.cjs",
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"engines": {
"node": ">=16.0.0"
},
"devDependencies": {
"typescript": "^5.2.2",
"vite": "^4.4.11",
"vitest": "^0.34.6"
}
}