-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 1.74 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": "react-tagged-state",
"version": "2.1.0",
"description": "⚛️ Experimental reactive and atomic state manager",
"keywords": [
"react",
"tagged",
"state",
"manager",
"reactivity",
"redux",
"mobx",
"valtio"
],
"homepage": "https://github.com/oleggrishechkin/react-tagged-state",
"license": "MIT",
"author": {
"name": "Oleg Grishechkin",
"email": "oleggrishechkin@gmail.com",
"url": "https://github.com/oleggrishechkin"
},
"files": [
"lib/*"
],
"main": "lib/index.js",
"types": "lib/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/oleggrishechkin/react-tagged-state"
},
"scripts": {
"lint": "eslint --quiet .",
"lint:fix": "eslint --quiet --fix .",
"prettier:fix": "prettier --write .",
"prettier:fix:readme": "prettier --tab-width 2 --print-width 50 --write README.md",
"prepare": "husky install && rimraf lib && tsc"
},
"devDependencies": {
"@types/react": "^18.0.15",
"@types/react-dom": "^18.0.6",
"configs-og": "^5.0.2",
"eslint": "^8.56.0",
"husky": "^8.0.3",
"lint-staged": "^15.2.0",
"prettier": "^3.1.1",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"rimraf": "^3.0.2",
"typescript": "^5.3.3"
},
"peerDependencies": {
"react": ">=18.0.0"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"eslintConfig": {
"extends": [
"./node_modules/configs-og/.eslintrc.js"
]
},
"prettier": "configs-og/prettier.config.js",
"lint-staged": {
"*.(js|jsx|ts|tsx)": "eslint --quiet"
}
}