-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
100 lines (100 loc) · 2.71 KB
/
package.json
File metadata and controls
100 lines (100 loc) · 2.71 KB
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
{
"name": "conditionalize-component",
"version": "2.0.0",
"description": "a react HOC for rendering components conditionally",
"author": "Islam Yamor",
"license": "Apache-2.0",
"main": "dist/index.js",
"types": "./dist/index.d.ts",
"packageManager": "pnpm@10.24.0",
"prettier": "@samislam/prettier-config/next",
"files": [
"dist"
],
"scripts": {
"test": "jest",
"dev": "tsx ./scripts/dev.ts",
"lint": "tsx ./scripts/lint.ts",
"clean": "tsx ./scripts/clean.ts",
"build": "tsx ./scripts/build.ts",
"format": "tsx ./scripts/format.ts"
},
"keywords": [
"hoc",
"hook",
"react",
"hooks",
"render",
"condition",
"component",
"react-hook",
"conditional",
"conditionalize",
"react-component",
"useConditionals",
"conditional-hook",
"withConditionals",
"react-conditionalize",
"conditional-rendering",
"conditionalizecomponent",
"conditionalize-component",
"react-conditional-rendering"
],
"repository": {
"type": "git",
"url": "git+https://github.com/samislam/conditionalize-component.git"
},
"bugs": {
"url": "https://github.com/samislam/conditionalize-component/issues"
},
"homepage": "https://github.com/samislam/conditionalize-component#readme",
"devDependencies": {
"@clscripts/barrelsby": "^2.8.1",
"@clscripts/chokidar-cli": "^4.0.3",
"@clscripts/cl-common": "^1.0.4",
"@clscripts/concurrently": "^9.2.0",
"@clscripts/cross-env": "^7.0.3",
"@clscripts/del-cli": "^6.0.0",
"@clscripts/echo-cli": "^2.0.0",
"@clscripts/eslint": "^9.30.1",
"@clscripts/nodemon": "^3.1.10",
"@clscripts/prettier": "^3.6.2",
"@clscripts/ts-node": "^10.9.3",
"@clscripts/ts-node-dev": "^2.0.0",
"@clscripts/ts-patch": "^3.3.0",
"@eslint/js": "^9.30.1",
"@samislam/prettier-config": "^1.1.7",
"@types/jest": "^30.0.0",
"@types/lodash": "^4.17.21",
"@types/node": "^22.16.0",
"@types/react": "^19.2.7",
"barrelsby": "^2.8.1",
"chalk": "4",
"chokidar-cli": "^3.0.0",
"cl-common": "^6.1.2",
"concurrently": "^9.2.0",
"cross-env": "^7.0.3",
"del-cli": "^6.0.0",
"echo-cli": "^2.0.0",
"eslint": "^9.30.1",
"jest": "^30.0.4",
"nodemon": "^3.1.10",
"prettier": "3.0.3",
"prettier-plugin-jsdoc": "^1.3.3",
"prettier-plugin-tailwindcss": "^0.6.13",
"ts-jest": "^29.4.0",
"ts-node": "^10.9.2",
"ts-node-dev": "^2.0.0",
"ts-patch": "^3.3.0",
"tsconfig-paths": "^4.2.0",
"tsx": "^4.20.3",
"typescript": "^5.9.3",
"typescript-eslint": "^8.36.0",
"typescript-transform-paths": "^3.5.5"
},
"dependencies": {
"common-es": "^1.1.0",
"lodash": "^4.17.21",
"react": "^19.2.0"
}
}