-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.21 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.21 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
{
"name": "solid-cached-resource",
"version": "0.8.0",
"description": "Create a solid resource attached to a cached state by a unique key",
"info": "Heavily inspired by react-query, but for solid's createResource. Works fluently with Solid, by keeping the same API as createResource, the resource source (the first function parameter signal) is being converted to a string key.",
"author": "Yonatan Bendahan",
"main": "dist/index.js",
"module": "./dist/index.js",
"type": "module",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"scripts": {
"build": "rm -rf .dist && tsc",
"check:types": "tsc --noEmit",
"lint": "biome check",
"createDocs": "typedoc src/index.ts",
"test": "vitest"
},
"homepage": "https://github.com/yonathan06/solid-cached-resource",
"contributors": [
{
"name": "Yonatan Bendahan",
"email": "yonatan.bendahan@gmail.com"
}
],
"license": "MIT",
"devDependencies": {
"@biomejs/biome": "2.3.11",
"@solidjs/testing-library": "^0.8.10",
"@testing-library/jest-dom": "^6.9.1",
"jsdom": "^27.4.0",
"solid-js": "^1.9.10",
"typedoc": "^0.28.16",
"typescript": "^5.9.3",
"vite-plugin-solid": "^2.11.10",
"vitest": "^4.0.17"
}
}