-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
96 lines (96 loc) · 2.26 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
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
{
"name": "@studiolambda/query",
"version": "1.1.0",
"license": "MIT",
"keywords": [
"stale-while-revalidate",
"swr",
"react-query",
"isomorphic",
"fetch",
"query",
"data-management",
"ui",
"vanilla",
"react"
],
"description": "Lightweight, isomorphic and framework agnostic asynchronous data management for modern UIs",
"author": {
"name": "Erik C. Forés",
"email": "soc@erik.cat",
"url": "https://erik.cat"
},
"engines": {
"node": ">=18.0.0"
},
"type": "module",
"types": "./dist/src/query/index.d.ts",
"main": "./dist/query.cjs",
"module": "./dist/query.js",
"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"
}
},
"files": [
"dist",
"package.json"
],
"scripts": {
"build": "vite build",
"dev": "vitest",
"test": "vitest run",
"test:ui": "vitest --ui --coverage",
"test:cover": "vitest run --coverage",
"prepack": "npm run build"
},
"peerDependencies": {
"react": "^19.0.0",
"react-dom": "^19.0.0",
"solid-js": "^1.9.4"
},
"peerDependenciesMeta": {
"react": {
"optional": true
},
"react-dom": {
"optional": true
},
"solid-js": {
"optional": true
}
},
"devDependencies": {
"@types/node": "^22.13.1",
"@types/react": "19.0.8",
"@types/react-dom": "19.0.3",
"@typescript-eslint/eslint-plugin": "^8.23.0",
"@typescript-eslint/parser": "^8.23.0",
"@vitejs/plugin-react": "^4.3.4",
"@vitest/coverage-v8": "^3.0.5",
"@vitest/ui": "^3.0.5",
"eslint": "^9.19.0",
"eslint-plugin-react-hooks": "^5.1.0",
"eslint-plugin-react-refresh": "^0.4.18",
"eslint-plugin-solid": "^0.14.5",
"globals": "^15.14.0",
"happy-dom": "^16.8.1",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"solid-js": "^1.9.4",
"typescript": "~5.7.3",
"typescript-eslint": "^8.23.0",
"vite": "^6.0.11",
"vite-plugin-dts": "^4.5.0",
"vite-plugin-solid": "^2.11.1",
"vitest": "^3.0.5"
}
}