-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
67 lines (67 loc) · 1.55 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
{
"version": "1.3.0",
"license": "MIT",
"name": "turbo-solid",
"description": "Lightweight asynchronous data management for solid",
"info": "A way to manage async data in solid applications like vercel's SWR. Also includes a cache and an event system. Supports a ton of features and it's build on top of createResource.",
"keywords": [
"solidhack",
"best_ecosystem",
"swr",
"stale",
"while",
"revalidate",
"cache",
"events",
"async",
"fetch"
],
"repository": {
"url": "https://github.com/StudioLambda/TurboSolid"
},
"homepage": "https://turbo-solid.erik.cat",
"author": {
"name": "Erik C. Forés",
"email": "soc@erik.cat",
"url": "https://erik.cat"
},
"contributors": [
{
"name": "Erik C. Forés",
"email": "soc@erik.cat",
"url": "https://erik.cat"
}
],
"types": "./dist/turbo-solid.d.ts",
"main": "./dist/turbo-solid.umd.js",
"module": "./dist/turbo-solid.mjs",
"exports": {
"./package.json": "./package.json",
".": {
"import": "./dist/turbo-solid.mjs",
"require": "./dist/turbo-solid.umd.js"
}
},
"files": [
"dist",
"package.json"
],
"scripts": {
"start": "vite",
"dev": "vite --force",
"build": "vite build && tsc --skipLibCheck",
"serve": "vite preview",
"prepack": "npm run build"
},
"devDependencies": {
"typescript": "^4.9.3",
"vite": "^3.2.4",
"vite-plugin-solid": "^2.4.0"
},
"peerDependencies": {
"solid-js": "^1.6.2"
},
"dependencies": {
"turbo-query": "^1.9.0"
}
}