-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.06 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.06 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
{
"name": "@genseki/react-query",
"description": "",
"sideEffects": false,
"version": "0.1.0-alpha.78",
"type": "module",
"files": [
"dist"
],
"exports": {
".": {
"import": "./src/index.ts",
"require": "./src/index.ts",
"types": "./src/index.ts"
}
},
"publishConfig": {
"exports": {
".": {
"import": "./dist/src/index.js",
"types": "./dist/src/index.d.ts"
}
}
},
"scripts": {
"lint": "eslint .",
"format": "prettier --write .",
"format:check": "prettier --check .",
"typecheck": "tsc",
"bundle": "rm -rf dist && tsc -p tsconfig.bundle.json",
"test": "vitest run"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@genseki/react": "workspace:^",
"@genseki/rest": "workspace:^",
"@internal/project-config": "workspace:^",
"@types/node": "^22.15.23",
"@types/react": "^19.1.6",
"tsup": "^8.5.0",
"type-fest": "^4.41.0",
"vitest": "^3.0.9"
},
"dependencies": {
"@tanstack/react-query": "^5.71.5"
}
}