-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.13 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": "openapi-ff",
"version": "0.1.3",
"license": "MIT",
"scripts": {
"test": "vitest run --typecheck",
"build": "vite build",
"format": "biome format --write ./src",
"lint": "biome check --apply ./src"
},
"type": "module",
"files": [
"dist"
],
"main": "./dist/openapi-ff.cjs",
"module": "./dist/openapi-ff.js",
"types": "./dist/openapi-ff.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/openapi-ff.d.ts",
"default": "./dist/openapi-ff.js"
},
"require": {
"types": "./dist/openapi-ff.d.cts",
"default": "./dist/openapi-ff.cjs"
}
}
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@farfetched/zod": "^0.12.8",
"@types/node": "^20.12.7",
"typescript": "5.1.6",
"undici": "^6.21.0",
"vite": "5",
"vite-plugin-dts": "^3.8.3",
"vite-tsconfig-paths": "4.2.1",
"vitest": "2.0.4",
"zod": "^3.23.8"
},
"peerDependencies": {
"@farfetched/core": "^0.12.8",
"effector": "^23.2.3"
},
"dependencies": {
"openapi-fetch": "^0.13.0",
"openapi-typescript-helpers": "^0.0.15"
}
}