-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 2.32 KB
/
package.json
File metadata and controls
92 lines (92 loc) · 2.32 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "@qualisero/openapi-endpoint",
"version": "0.21.3",
"repository": {
"type": "git",
"url": "https://github.com/qualisero/openapi-endpoint.git"
},
"description": "Type-safe OpenAPI integration for Vue Query",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"files": [
"dist",
"bin"
],
"bin": {
"openapi-codegen": "./bin/openapi-codegen.js"
},
"scripts": {
"build": "tsc -p tsconfig.json && node scripts/fix-esm-imports.js",
"dev": "vitest",
"test": "vitest",
"test:run": "vitest run",
"test:ui": "vitest --ui",
"test:coverage": "vitest run --coverage",
"check": "npm run types && npm run types:test && npm run lint && npm run format:check",
"fix": "npm run lint:fix && npm run format",
"types": "tsc --noEmit",
"types:test": "npx tsc --noEmit --project tests/tsconfig.json",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"docs": "typedoc",
"docs:publish": "npm run docs && gh-pages -d docs",
"prepublishOnly": "npm run build && npm run check"
},
"keywords": [
"vue",
"openapi",
"rest",
"api",
"vue-query",
"tanstack-query",
"typescript"
],
"publishConfig": {
"access": "public",
"provenance": true
},
"peerDependencies": {
"@tanstack/vue-query": ">=5.90",
"axios": ">=1.12",
"vue": ">=3.3",
"openapi-typescript": "^7.9.1",
"@vue/reactivity": ">=3.3"
},
"devDependencies": {
"@eslint/js": "^9.37.0",
"@types/node": "^24.7.0",
"@typescript-eslint/eslint-plugin": "^8.46.0",
"@typescript-eslint/parser": "^8.46.0",
"@vitest/coverage-v8": "^3.2.4",
"@vitest/ui": "^3.2.4",
"@vue/test-utils": "^2.4.6",
"eslint": "^9.37.0",
"eslint-plugin-prettier": "^5.5.4",
"gh-pages": "^6.3.0",
"globals": "^16.4.0",
"jsdom": "^27.0.0",
"prettier": "^3.6.2",
"typedoc": "^0.28.14",
"typescript": "^5.9.2",
"vitest": "^3.2.4"
},
"prettier": {
"semi": false,
"singleQuote": true,
"tabWidth": 2,
"trailingComma": "all",
"printWidth": 120,
"endOfLine": "lf"
},
"license": "MIT",
"author": ""
}