-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.68 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (64 loc) · 1.68 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
{
"name": "@openapi-qraft/tanstack-query-react-types",
"version": "2.15.0-beta.8",
"scripts": {
"build": "yarn clean && NODE_ENV=production rollup --config rollup.config.mjs && tsc --project tsconfig.build.json --emitDeclarationOnly",
"dev": "yarn clean && tsc --project tsconfig.build.json --watch --outDir ./dist/esm --noEmitOnError false",
"typecheck": "tsc --noEmit",
"lint": "eslint --max-warnings 0",
"clean": "rimraf dist/"
},
"type": "module",
"module": "dist/esm/index.js",
"exports": {
".": {
"types": "./dist/types/index.d.ts",
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.cjs"
},
"./shared/*": {
"types": "./dist/types/shared/*.d.ts",
"import": "./dist/esm/shared/*.js",
"require": "./dist/cjs/shared/*.cjs"
},
"./package.json": "./package.json"
},
"typesVersions": {
"*": {
"*": [
"dist/types/*"
]
}
},
"peerDependencies": {
"@tanstack/react-query": "^5.80.0",
"react": "^18 || ^19"
},
"devDependencies": {
"@openapi-qraft/eslint-config": "workspace:*",
"@openapi-qraft/rollup-config": "workspace:*",
"@tanstack/react-query": "^5.100.14",
"eslint": "^10.2.0",
"rimraf": "^6.1.3",
"rollup": "~4.60.1",
"typescript": "^5.9.3"
},
"packageManager": "yarn@4.2.1",
"files": [
"dist",
"src",
"!dist/**/*.test.*",
"!dist/**/*.spec.*",
"!src/**/__snapshots__/**",
"!src/**/*.test.*",
"!src/**/*.spec.*"
],
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/OpenAPI-Qraft/openapi-qraft.git",
"directory": "packages/cli"
}
}