This repository has been archived by the owner on Aug 15, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 2.09 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "@kubb/template-demo",
"version": "0.0.1",
"description": "Kubb plugin demo",
"repository": {
"type": "git",
"url": "git://github.com/kubb-project/plugin-template.git"
},
"license": "MIT",
"author": "Stijn Van Hulle <[email protected]",
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"module": "./dist/index.js",
"default": "./dist/index.cjs"
},
"./package.json": "./package.json",
"./*": "./*"
},
"main": "dist/index.js",
"module": "dist/index.js",
"types": "./dist/index.d.ts",
"typesVersions": {
"*": {}
},
"scripts": {
"build": "tsup",
"start": "tsup --watch",
"release": "pnpm publish --no-git-check",
"prepack": "pnpm build",
"test": "vitest",
"test:coverage": "vitest run --coverage",
"test:ui": "vitest --ui",
"typecheck": "tsc -p ./tsconfig.json --noEmit",
"upgrade": "npx taze -r -w --exclude pnpm"
},
"dependencies": {
"@kubb/core": "^2.6.7",
"@kubb/swagger": "^2.6.7",
"change-case": "^4.1.2"
},
"devDependencies": {
"@types/node": "^20.11.24",
"@typescript-eslint/eslint-plugin": "^7.1.1",
"@typescript-eslint/parser": "^7.1.1",
"@vitest/coverage-v8": "^1.3.1",
"@vitest/ui": "^1.3.1",
"cross-env": "^7.0.3",
"eslint": "^8.57.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-formatjs": "^4.12.2",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jest": "^27.9.0",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.34.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-unused-imports": "^3.1.0",
"prettier": "^3.2.5",
"prettier-eslint": "^15.0.1",
"ts-node": "^10.9.2",
"tsup": "^8.0.2",
"typescript": "^5.3.3",
"vitest": "^1.3.1"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=18",
"pnpm": ">=8.3.0"
}
}