-
Notifications
You must be signed in to change notification settings - Fork 273
/
Copy pathpackage.json
51 lines (51 loc) · 1.84 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
{
"name": "@apicurio/apicurio-registry-sdk",
"private": false,
"version": "3.0.7",
"type": "module",
"main": "dist/main.js",
"types": "dist/main.d.ts",
"files": [
"dist"
],
"scripts": {
"clean": "rimraf dist lib/generated-client .kiota",
"kiota-info": "cross-env KIOTA_VERSION=v1.22.3 kiota info -l typescript",
"generate-sources": "cross-env KIOTA_VERSION=v1.22.3 kiota generate --serializer none --deserializer none -l typescript -d ../common/src/main/resources/META-INF/openapi.json -c ApicurioRegistryClient -o ./lib/generated-client",
"dev": "vite",
"build": "tsc --p ./tsconfig-build.json && vite build",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"test": "vitest run"
},
"peerDependencies": {
"@microsoft/kiota-abstractions": "1.0.0-preview.79",
"@microsoft/kiota-http-fetchlibrary": "1.0.0-preview.79",
"@microsoft/kiota-serialization-form": "1.0.0-preview.79",
"@microsoft/kiota-serialization-json": "1.0.0-preview.79",
"@microsoft/kiota-serialization-multipart": "1.0.0-preview.79",
"@microsoft/kiota-serialization-text": "1.0.0-preview.79"
},
"devDependencies": {
"@apicurio/eslint-config": "0.3.0",
"@kiota-community/kiota-gen": "1.0.2",
"@types/node": "22.13.5",
"@types/react": "18.3.18",
"@types/react-dom": "18.3.5",
"@typescript-eslint/eslint-plugin": "8.25.0",
"@typescript-eslint/parser": "8.25.0",
"@vitejs/plugin-react": "4.3.4",
"cross-env": "7.0.3",
"eslint": "8.57.1",
"eslint-plugin-react-hooks": "5.1.0",
"eslint-plugin-react-refresh": "0.4.19",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-router-dom": "7.2.0",
"rimraf": "6.0.1",
"typescript": "5.7.3",
"uuid": "11.1.0",
"vite": "6.2.0",
"vite-plugin-dts": "4.5.1",
"vitest": "3.0.7"
}
}