-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
48 lines (48 loc) · 1.18 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
{
"name": "@harnessio/oats-plugin-react-query",
"version": "5.0.0",
"license": "MIT",
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/harness/oats.git",
"directory": "packages/plugin-react-query"
},
"publishConfig": {
"access": "public"
},
"main": "./dist/index.mjs",
"exports": {
".": "./dist/index.mjs"
},
"scripts": {
"prebuild": "rimraf dist",
"build": "tsc --outDir dist && cp -R src/templates dist/",
"prepublishOnly": "pnpm run build",
"test": "exit 0",
"lint": "eslint src/**/*.mts",
"fmtc": "prettier --check src/**/*.mts",
"typecheck": "tsc --noEmit"
},
"engines": {
"node": ">=16.0.0"
},
"peerDependencies": {
"@harnessio/oats-cli": "workspace:^",
"@tanstack/react-query": "^4.0.0",
"react": ">=16.8.0 <17.0.0 || >=17.0.0 <18.0.0 || >=18.0.0 <19.0.0"
},
"dependencies": {
"change-case": "^4.1.2",
"liquidjs": "^10.3.3",
"openapi-types": "^12.1.0",
"zod": "^3.19.1"
},
"devDependencies": {
"@harnessio/oats-cli": "workspace:^",
"@tanstack/react-query": "^4.20.4",
"react": "^18.2.0",
"rimraf": "^3.0.2",
"typescript": "^4.8.4"
}
}