-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
75 lines (75 loc) · 1.77 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
{
"name": "swr-global-state",
"version": "2.2.0",
"author": "Sutan Gading Fadhillah Nasution <[email protected]>",
"description": "Zero-setup & simple global state management for React Components",
"license": "MIT",
"private": false,
"workspaces": [
"apps/*",
"packages/*"
],
"main": "packages/swr-global-state/dist/index.js",
"typings": "packages/swr-global-state/dist/index.d.ts",
"module": "packages/swr-global-state/dist/swr-global-state.esm.js",
"homepage": "https://swr-global-state-demo.gading.dev",
"repository": {
"type": "git",
"url": "git+https://github.com/gadingnst/swr-global-state.git"
},
"bugs": {
"url": "https://github.com/gadingnst/swr-global-state/issues"
},
"files": [
"packages/swr-global-state/dist"
],
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev --parallel",
"lint": "turbo run lint",
"test": "turbo run test",
"test:coverage": "turbo run test:coverage",
"format": "prettier --write \"**/*.{ts,tsx,md}\""
},
"peerDependencies": {
"react": ">=17",
"swr": ">=2"
},
"devDependencies": {
"eslint-config-custom": "*",
"prettier": "latest",
"turbo": "latest"
},
"engines": {
"node": ">=18.0.0"
},
"packageManager": "[email protected]",
"keywords": [
"react",
"swr",
"hooks",
"javascript",
"typescript",
"global",
"state",
"cache",
"store",
"global-state",
"remote-state",
"global-state-management",
"react-state-management",
"state-management",
"state-manager",
"global-state-hooks",
"state-hooks",
"swr-state",
"swr-store",
"use-swr",
"use-store",
"client-state",
"react-utility",
"hooks-utility",
"redux-alternative",
"context-alternative"
]
}