-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 2 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
{
"name": "solid-swr",
"description": "The beloved swr package ported over to solid",
"version": "5.0.1",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"module": "./dist/index.js",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"./cache": {
"import": {
"types": "./dist/cache.d.ts",
"default": "./dist/cache.js"
}
},
"./extra": {
"import": {
"types": "./dist/extra.d.ts",
"default": "./dist/extra.js"
}
}
},
"files": [
"dist"
],
"keywords": [
"solid",
"solidjs",
"swr",
"solid-swr",
"hooks",
"request",
"cache",
"fetch"
],
"author": "tronikelis",
"repository": {
"type": "git",
"url": "https://github.com/tronikelis/solid-swr"
},
"license": "MIT",
"scripts": {
"dev": "vite",
"build": "tsc",
"lint": "eslint . -c ./.eslintrc.cjs",
"test": "vitest",
"tsc": "tsc --noEmit"
},
"peerDependencies": {
"solid-js": "1.x.x"
},
"dependencies": {},
"devDependencies": {
"@solidjs/testing-library": "0.8.5",
"@testing-library/jest-dom": "6.3.0",
"@types/node": "20.11.16",
"eslint": "8.56.0",
"eslint-config-tronikelis-solid": "10.0.0",
"jsdom": "24.0.0",
"prettier": "3.2.4",
"prettier-config-tronikelis": "3.0.0",
"typescript": "5.3.3",
"vite": "5.0.12",
"vite-plugin-solid": "2.9.1",
"vite-tsconfig-paths": "4.3.1",
"vitest": "1.2.2"
},
"browser": {},
"packageManager": "[email protected]+sha512.d1a029e1a447ad90bc96cd58b0fad486d2993d531856396f7babf2d83eb1823bb83c5a3d0fc18f675b2d10321d49eb161fece36fe8134aa5823ecd215feed392"
}