-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.19 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.19 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
{
"name": "react-jsx-control",
"description": "React JSX utility components for clean and efficient conditional and iterative rendering. Simplifies rendering logic with components like Ternary, Show, and SwitchCase.",
"version": "1.0.7",
"type": "module",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"keyword": [
"react",
"jsx",
"control",
"react-utilities",
"react-conditional-rendering"
],
"scripts": {
"test": "vitest run",
"test:watch": "vitest watch",
"build:dist": "tsup"
},
"files": [
"dist",
"LICENSE"
],
"repository": {
"type": "git",
"url": "https://github.com/joon623/react-jsx-control"
},
"author": "jun park",
"license": "MIT",
"devDependencies": {
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^15.0.7",
"@testing-library/user-event": "^14.5.2",
"@types/react": "^18.3.2",
"@types/react-dom": "^18.3.0",
"jsdom": "^25.0.1",
"prettier": "^3.4.2",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"tsup": "^8.3.5",
"typescript": "^5.7.2",
"vite": "^6.0.7",
"vitest": "^2.1.8"
}
}