-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
112 lines (112 loc) · 2.62 KB
/
package.json
File metadata and controls
112 lines (112 loc) · 2.62 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"name": "@studiolambda/query",
"version": "1.4.0",
"description": "Lightweight, isomorphic and framework agnostic asynchronous data management for modern UIs",
"keywords": [
"data-management",
"fetch",
"isomorphic",
"query",
"react",
"react-query",
"stale-while-revalidate",
"swr",
"ui",
"vanilla"
],
"homepage": "https://erik.cat/blog/query-docs",
"license": "MIT",
"author": {
"name": "Erik C. Forés",
"email": "soc@erik.cat",
"url": "https://erik.cat"
},
"repository": {
"type": "git",
"url": "https://github.com/StudioLambda/Query.git"
},
"files": [
"dist",
"package.json"
],
"type": "module",
"sideEffects": false,
"main": "./dist/query.cjs",
"module": "./dist/query.js",
"types": "./dist/src/query/index.d.ts",
"exports": {
"./package.json": "./package.json",
".": {
"types": "./dist/src/query/index.d.ts",
"import": "./dist/query.js",
"require": "./dist/query.cjs"
},
"./react": {
"types": "./dist/src/react/index.d.ts",
"import": "./dist/query_react.js",
"require": "./dist/query_react.cjs"
}
},
"scripts": {
"build:only": "vite build",
"build": "npm run build:only",
"prebuild": "npm run format:check && npm run lint",
"lint": "oxlint --react-plugin --vitest-plugin",
"format": "oxfmt --write .",
"format:check": "oxfmt --check .",
"dev": "vitest",
"test": "vitest run",
"test:ui": "vitest --ui --coverage",
"test:cover": "vitest run --coverage",
"prepack": "npm run build"
},
"devDependencies": {
"@types/node": "^25.1.0",
"@types/react": "19.2.10",
"@types/react-dom": "19.2.3",
"@vitejs/plugin-react": "^5.1.2",
"@vitest/coverage-v8": "^4.0.18",
"babel-plugin-react-compiler": "^1.0.0",
"happy-dom": "^20.4.0",
"oxfmt": "^0.27.0",
"oxlint": "^1.42.0",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"react-error-boundary": "^6.1.0",
"solid-js": "^1.9.11",
"typescript": "~5.9.3",
"vite": "^7.1.12",
"vite-plugin-dts": "^4.5.4",
"vite-plugin-solid": "^2.11.10",
"vitest": "^4.0.18"
},
"peerDependencies": {
"react": "^19.1.0",
"react-dom": "^19.1.0",
"solid-js": "^1.9.0"
},
"peerDependenciesMeta": {
"react": {
"optional": true
},
"react-dom": {
"optional": true
},
"solid-js": {
"optional": true
}
},
"devEngines": {
"packageManager": {
"name": "npm",
"version": ">=11.0.0"
},
"runtime": {
"name": "node",
"version": ">=24.0.0"
}
},
"engines": {
"node": ">=18.0.0"
}
}