-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
50 lines (50 loc) · 1.09 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
{
"name": "reastorage",
"description": "Global state management for local or session storage",
"license": "MIT",
"workspaces": [
"packages/*"
],
"sideEffects": false,
"repository": {
"type": "git",
"url": "https://github.com/lifeisegg123/reastorage"
},
"author": {
"name": "lifeisegg123",
"email": "[email protected]"
},
"bugs": {
"url": "https://github.com/lifeisegg123/reastorage/issues"
},
"keywords": [
"react",
"reastorage",
"localStorage",
"storage",
"sessionStorage",
"globalStorage",
"global-state",
"state-management"
],
"files": [
"dist/"
],
"scripts": {
"build": "ultra -r build",
"dev": "ultra -r dev",
"test": "ultra -r test",
"lerna:publish": "pnpm build && lerna publish from-package --yes",
"lerna:version": "lerna version"
},
"devDependencies": {
"jest": "^29.0.3",
"jest-environment-jsdom": "^29.0.3",
"lerna": "^5.5.1",
"ts-node": "^10.9.1",
"tsup": "^8.1.0",
"typescript": "^4.8.3",
"ultra-runner": "^3.10.5"
},
"packageManager": "[email protected]"
}