-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 2.71 KB
/
package.json
File metadata and controls
91 lines (91 loc) · 2.71 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "@opensourceframework/react-query-auth",
"version": "2.4.5",
"author": "OpenSource Framework Contributors (fork), Original: alan2207",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/riceharvest/opensourceframework.git",
"directory": "packages/react-query-auth"
},
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.mts",
"exports": {
"./package.json": "./package.json",
".": {
"import": {
"types": "./dist/index.d.mts",
"import": "./dist/index.mjs",
"default": "./dist/index.mjs"
},
"require": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.js"
}
}
},
"files": [
"dist",
"llms.txt"
],
"engines": {
"node": ">=20.0.0"
},
"scripts": {
"test": "vitest run",
"test:cov": "vitest run --coverage",
"test:coverage": "pnpm test:cov",
"postbuild": "npm run check:exports",
"build": "tsup src/index.tsx --config tsup.config.ts",
"example:dev": "npm run dev -w examples/vite",
"build:dev": "tsup src/index.tsx --config tsup.dev.config.ts",
"build:dev:watch": "npm run build:dev -- --watch",
"build:dev:cjs:watch": "npm run build:dev -- --watch",
"dev": "npm-run-all -s build:dev -p example:dev build:dev:watch",
"prepublishOnly": "npm run build",
"check": "biome check .",
"check:fix": "biome check --fix .",
"typecheck": "tsc",
"validate": "npm run check && npm run tsc && npm run test",
"check:exports": "attw --pack ."
},
"peerDependencies": {
"@tanstack/react-query": ">=4.24.6 <22.0.0 || ^5.0.0",
"react": ">=16.8.0 <22.0.0 || ^19.0.0",
"react-dom": ">=16.8.0 <22.0.0 || ^19.0.0"
},
"devDependencies": {
"@arethetypeswrong/cli": "^0.17.1",
"@biomejs/biome": "^1.9.4",
"@tanstack/react-query": "^5.62.3",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.1.0",
"@types/node": "^22.10.1",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"@vitest/coverage-v8": "^2.1.8",
"eslint-plugin-jest": "^29.15.0",
"happy-dom": "^15.11.7",
"jsdom": "^25.0.1",
"lefthook": "^1.9.0",
"npm-run-all": "^4.1.5",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"tsup": "^8.5.1",
"typescript": "^5.9.3",
"vitest": "^2.1.9"
},
"workspaces": [
".",
"examples/*"
],
"homepage": "https://github.com/riceharvest/opensourceframework/tree/main/packages/react-query-auth#readme",
"bugs": {
"url": "https://github.com/riceharvest/opensourceframework/issues?q=is%3Aissue+is%3Aopen+react-query-auth"
}
}