This repository has been archived by the owner on Oct 11, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
85 lines (85 loc) · 2.31 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
77
78
79
80
81
82
83
84
85
{
"name": "react-persistent-state-hook",
"version": "0.7.0",
"description": "`React.useState` + BrowserStorage API for persistence",
"source": "src/index.ts",
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/deniskabana/react-persistent-state-hook.git"
},
"url": "https://github.com/deniskabana/react-persistent-state-hook",
"author": "Denis Kabana <[email protected]>",
"license": "MIT",
"keywords": [
"react",
"state",
"state-management",
"react-hooks"
],
"targets": {
"main": {
"optimize": true
},
"module": {
"optimize": true
}
},
"files": [
"dist",
"package.json",
"LICENSE",
"README.md"
],
"scripts": {
"start": "tsc -w",
"build": "rm -rf dist .parcel-cache && mkdir -p dist && parcel build --no-source-maps",
"check:tsc": "tsc --noEmit",
"check:lint": "eslint src/ --max-warnings=0",
"check": "yarn check:lint && yarn check:tsc",
"fix:format": "prettier --write src/ >/dev/null",
"fix:style": "eslint --fix src/ >/dev/null",
"fix": "yarn fix:format && yarn fix:style",
"pre:publish": "rm -rf dist && yarn fix && yarn check && yarn build",
"npm:publish": "yarn pre:publish && npm publish",
"postinstall": "husky install",
"prepack": "pinst --disable",
"postpack": "pinst --enable"
},
"dependencies": {
"react": "18.2.0"
},
"packageManager": "[email protected]",
"engines": {
"node": ">= 20",
"yarn": ">= 3",
"npm": ">= 9"
},
"devDependencies": {
"@parcel/packager-ts": "2.9.3",
"@parcel/transformer-typescript-types": "2.9.3",
"@types/node": "^20.6.0",
"@types/react": "^18.2.39",
"@types/react-dom": "^18.2.17",
"@typescript-eslint/eslint-plugin": "^6.6.0",
"@typescript-eslint/parser": "^6.6.0",
"eslint": "^8.48.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^8.0.0",
"parcel": "^2.9.3",
"pinst": "^3.0.0",
"prettier": "^3.0.3",
"process": "^0.11.10",
"react-dom": "^18.2.0",
"tsc": "^2.0.4",
"typescript": "^5.2.2"
},
"peerDependencies": {
"react": ">= 16.8.0"
}
}