-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.07 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
{
"name": "@elite174/api-maker",
"version": "1.1.0",
"description": "Highly customizable small library with 0 dependencies allows you to build API functions with mocks.",
"keywords": [
"api",
"mock",
"api-maker",
"fetch",
"xhr"
],
"author": {
"name": "Vladislav Lipatov",
"email": "[email protected]"
},
"type": "module",
"main": "dist/index.js",
"module": "dist/index.js",
"files": [
"dist"
],
"exports": {
".": {
"default": "./dist/index.js",
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"types": "./dist/index.d.ts",
"sideEffects": false,
"publishConfig": {
"access": "public"
},
"homepage": "https://github.com/elite174/api-maker",
"bugs": {
"url": "https://github.com/elite174/api-maker/issues"
},
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"test": "vitest"
},
"devDependencies": {
"typescript": "^5.2.2",
"vite": "^5.0.8",
"vite-plugin-dts": "^3.7.2",
"vitest": "^1.2.2"
}
}