@confighub/rtk-query 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +21 -0
- package/README.md +57 -0
- package/dist/index.cjs +2654 -0
- package/dist/index.cjs.map +1 -0
- package/dist/index.d.cts +56555 -0
- package/dist/index.d.ts +56555 -0
- package/dist/index.js +2398 -0
- package/dist/index.js.map +1 -0
- package/package.json +62 -0
package/package.json
ADDED
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@confighub/rtk-query",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "RTK Query client for the ConfigHub API (generated hooks, cache tags, bearer auth)",
|
|
5
|
+
"license": "MIT",
|
|
6
|
+
"repository": {
|
|
7
|
+
"type": "git",
|
|
8
|
+
"url": "git+https://github.com/confighub/js-sdk.git",
|
|
9
|
+
"directory": "packages/rtk-query"
|
|
10
|
+
},
|
|
11
|
+
"homepage": "https://github.com/confighub/js-sdk/tree/main/packages/rtk-query#readme",
|
|
12
|
+
"bugs": "https://github.com/confighub/js-sdk/issues",
|
|
13
|
+
"type": "module",
|
|
14
|
+
"main": "./dist/index.cjs",
|
|
15
|
+
"module": "./dist/index.js",
|
|
16
|
+
"types": "./dist/index.d.ts",
|
|
17
|
+
"exports": {
|
|
18
|
+
".": {
|
|
19
|
+
"import": {
|
|
20
|
+
"types": "./dist/index.d.ts",
|
|
21
|
+
"default": "./dist/index.js"
|
|
22
|
+
},
|
|
23
|
+
"require": {
|
|
24
|
+
"types": "./dist/index.d.cts",
|
|
25
|
+
"default": "./dist/index.cjs"
|
|
26
|
+
}
|
|
27
|
+
}
|
|
28
|
+
},
|
|
29
|
+
"files": [
|
|
30
|
+
"dist",
|
|
31
|
+
"README.md",
|
|
32
|
+
"LICENSE"
|
|
33
|
+
],
|
|
34
|
+
"sideEffects": false,
|
|
35
|
+
"scripts": {
|
|
36
|
+
"build": "tsup",
|
|
37
|
+
"dev": "tsup --watch",
|
|
38
|
+
"typecheck": "tsc --noEmit",
|
|
39
|
+
"prepublishOnly": "npm run build"
|
|
40
|
+
},
|
|
41
|
+
"peerDependencies": {
|
|
42
|
+
"@reduxjs/toolkit": "^2.0.0",
|
|
43
|
+
"react": "^18.0.0 || ^19.0.0",
|
|
44
|
+
"react-redux": "^9.0.0"
|
|
45
|
+
},
|
|
46
|
+
"devDependencies": {
|
|
47
|
+
"@reduxjs/toolkit": "^2.3.0",
|
|
48
|
+
"@types/react": "^18.3.12",
|
|
49
|
+
"react": "^18.3.1",
|
|
50
|
+
"react-redux": "^9.1.2"
|
|
51
|
+
},
|
|
52
|
+
"keywords": [
|
|
53
|
+
"confighub",
|
|
54
|
+
"rtk-query",
|
|
55
|
+
"redux",
|
|
56
|
+
"openapi",
|
|
57
|
+
"api-client"
|
|
58
|
+
],
|
|
59
|
+
"publishConfig": {
|
|
60
|
+
"access": "public"
|
|
61
|
+
}
|
|
62
|
+
}
|