forked from OpenAPI-Qraft/openapi-qraft
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.85 KB
/
Copy pathpackage.json
File metadata and controls
69 lines (69 loc) · 1.85 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
{
"name": "@openapi-qraft/eslint-plugin-query",
"version": "2.15.0-beta.9",
"description": "ESLint plugin for OpenAPI Qraft",
"homepage": "https://openapi-qraft.github.io/openapi-qraft/docs/eslint/eslint-plugin-query",
"packageManager": "yarn@4.0.2",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/OpenAPI-Qraft/openapi-qraft.git",
"directory": "packages/eslint-plugin-query"
},
"scripts": {
"build": "yarn clean && NODE_ENV=production rollup --config rollup.config.mjs && tsc --project tsconfig.build.json --emitDeclarationOnly",
"typecheck": "tsc --noEmit",
"lint": "eslint --max-warnings 0",
"test": "vitest run --coverage",
"clean": "rimraf dist/"
},
"type": "module",
"types": "dist/types/index.d.ts",
"module": "dist/esm/index.js",
"main": "dist/cjs/index.cjs",
"exports": {
".": {
"types": "./dist/types/index.d.ts",
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.cjs"
},
"./package.json": "./package.json"
},
"typesVersions": {
"*": {
"*": [
"dist/types/*"
]
}
},
"sideEffects": false,
"files": [
"dist",
"src",
"!src/__tests__"
],
"dependencies": {
"@typescript-eslint/utils": "^8.58.1"
},
"devDependencies": {
"@openapi-qraft/eslint-config": "workspace:*",
"@openapi-qraft/rollup-config": "workspace:*",
"@typescript-eslint/rule-tester": "^8.58.1",
"@typescript-eslint/typescript-estree": "^8.58.1",
"@vitest/coverage-v8": "^4.1.2",
"eslint": "^10.2.0",
"rimraf": "^6.1.3",
"rollup": "~4.60.1",
"typescript": "^5.9.3",
"vitest": "^4.1.4"
},
"peerDependencies": {
"eslint": "^8.57.0 || ^9.0.0"
},
"bugs": {
"url": "https://github.com/OpenAPI-Qraft/openapi-qraft/issues"
}
}