-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.26 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.26 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
{
"name": "@typoas/react-query",
"version": "4.2.2",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/embraser01/typoas",
"directory": "packages/typoas-react-query"
},
"main": "./src/index.ts",
"module": "./lib/esm/index.js",
"scripts": {
"prepack": "tsc --module esnext --outDir ./lib/esm && tsc --outDir ./lib/cjs",
"start": "ts-node ./src/bin.ts",
"test:types": "tsc --noEmit",
"test:jest": "jest"
},
"devDependencies": {
"@jest/globals": "^29.7.0",
"@tanstack/react-query": "^5.35.5",
"@testing-library/dom": "^10.4.0",
"@testing-library/react": "^16.0.0",
"@types/node": "^20.16.1",
"@types/react": "^18.3.4",
"@types/react-dom": "^18.3.0",
"@typoas/runtime": "workspace:^",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"ts-jest": "^29.2.4",
"typescript": "~5.5.4"
},
"peerDependencies": {
"@tanstack/react-query": "^5.35.5",
"@typoas/runtime": "workspace:^"
},
"files": [
"/lib/**/*.js",
"/lib/**/*.d.ts",
"!/lib/**/__tests__/*"
],
"publishConfig": {
"main": "./lib/cjs/index.js",
"module": "./lib/esm/index.js",
"types": "./lib/esm/index.d.ts"
}
}