-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 814 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 814 Bytes
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
{
"type": "module",
"name": "@mary-ext/solid-query",
"version": "1.0.2",
"description": "personal-use fork of @tanstack/solid-query",
"license": "MIT",
"repository": {
"url": "https://codeberg.org/mary-ext/solid-query"
},
"files": [
"dist/",
"lib/",
"!lib/**/*.bench.ts",
"!lib/**/*.test.ts"
],
"exports": {
".": "./dist/index.js"
},
"scripts": {
"build": "tsc && vite build",
"prepublish": "rm -rf dist; pnpm run build",
"fmt": "PRETTIER_EXPERIMENTAL_CLI=1 prettier --cache --write ."
},
"peerDependencies": {
"solid-js": "^1.9.5"
},
"dependencies": {
"@tanstack/query-core": "^5.81.5"
},
"devDependencies": {
"prettier": "^3.6.2",
"solid-js": "^1.9.7",
"typescript": "~5.8.3",
"vite": "^6.3.5",
"vite-plugin-dts": "^4.5.4",
"vite-plugin-solid": "^2.11.7"
}
}