forked from siberiacancode/reactuse
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
103 lines (103 loc) · 2.48 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "@siberiacancode/reactuse",
"type": "module",
"version": "0.0.74",
"description": "Ultimate tool",
"author": {
"name": "SIBERIA CAN CODE 🧊",
"url": "https://github.com/siberiacancode"
},
"contributors": [
{
"name": "Dmitry Babin",
"url": "https://github.com/debabin"
}
],
"license": "MIT",
"homepage": "https://github.com/siberiacancode/reactuse",
"repository": {
"type": "git",
"url": "https://github.com/siberiacancode/reactuse.git"
},
"bugs": "https://github.com/siberiacancode/reactuse/issues",
"keywords": [
"react",
"react hooks",
"react use",
"use",
"hooks"
],
"sideEffects": false,
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/**/*"
],
"engines": {
"node": ">=14"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"prepublishOnly": "yarn type && yarn unit-test run && yarn build",
"build": "shx rm -rf dist && rollup -c --bundleConfigAsCjs",
"lint": "eslint . --fix",
"type": "tsc --noEmit",
"format": "prettier --write .",
"pretty": "yarn type && yarn lint && yarn format",
"prepare": "husky",
"unit-test": "vitest",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs"
},
"peerDependencies": {
"@types/react": "^18.0.0",
"react": "^17.0.2 || ^18.0.0",
"react-dom": "^17.0.2 || ^18.0.0"
},
"peerDependenciesMeta": {
"@types/react": {
"optional": true
}
},
"dependencies": {
"screenfull": "^6.0.2"
},
"devDependencies": {
"@siberiacancode/builder": "^1.3.17",
"@siberiacancode/eslint": "^2.6.0",
"@siberiacancode/prettier": "^1.1.1",
"@siberiacancode/vitest": "^1.2.4",
"@testing-library/dom": "^10.4.0",
"@testing-library/react": "^16.0.1",
"@types/doctrine": "^0.0.9",
"@types/node": "^22.9.1",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.2",
"comment-parser": "^1.4.1",
"core-js": "^3.39.0",
"doctrine": "^3.0.0",
"husky": "^9.1.7",
"lint-staged": "^15.2.10",
"markdown-table": "^3.0.4",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"shx": "^0.3.4",
"typescript": "^5.7.2",
"vite": "^6.0.3",
"vitepress": "^1.5.0"
},
"lint-staged": {
"*.js": [
"eslint --fix",
"prettier --write"
],
"*.ts": [
"eslint --fix",
"prettier --write"
]
}
}