This repository was archived by the owner on Jun 22, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.75 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.75 KB
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
54
{
"name": "openapi-fetch-tauri",
"version": "0.0.2",
"description": "Fast, type-safe fetch client for your OpenAPI schema. Uses tauri fetch.",
"author": "Luna Simons <luna@bddvlpr.com> (https://bddvlpr.com)",
"contributors": [
"Drew Powers <drew@pow.rs"
],
"license": "MIT",
"scripts": {
"build": "pnpm run build:clean && pnpm run build:js && pnpm run build:js-min && pnpm run build:cjs",
"build:clean": "del dist",
"build:js": "mkdir -p dist && cp src/* dist",
"build:js-min": "esbuild --bundle src/index.js --format=esm --minify --outfile=dist/index.min.js && cp dist/index.d.ts dist/index.min.d.ts",
"build:cjs": "esbuild --bundle src/index.js --format=cjs --outfile=dist/cjs/index.cjs && cp dist/index.d.ts dist/cjs/index.d.cts",
"test": "tsc --noEmit && vitest run",
"lint": "prettier --check . && eslint .",
"format": "prettier --write . && eslint . --fix"
},
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"require": {
"types": "./dist/cjs/index.d.cts",
"default": "./dist/cjs/index.cjs"
}
},
"./*": "./*"
},
"dependencies": {
"@tauri-apps/api": "^1.5.3",
"openapi-typescript-helpers": "^0.0.7"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^7.1.1",
"@typescript-eslint/parser": "^7.1.1",
"del-cli": "^5.1.0",
"esbuild": "^0.20.1",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-vitest": "^0.3.25",
"openapi-typescript": "^6.7.4",
"prettier": "^3.2.5",
"typescript": "^5.4.2",
"vitest": "^1.3.1"
},
"type": "module"
}