-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
113 lines (113 loc) · 3.34 KB
/
package.json
File metadata and controls
113 lines (113 loc) · 3.34 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
101
102
103
104
105
106
107
108
109
110
111
112
113
{
"name": "react-conditional-ui",
"version": "1.2.3",
"description": "A React component for building conditions using natural language input",
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"./styles.css": "./dist/styles.css"
},
"files": [
"dist",
"logo.png"
],
"scripts": {
"build": "tsup",
"dev": "npm run dev --prefix demo",
"lint": "eslint src/ demo/",
"format": "prettier --write .",
"format:check": "prettier --check .",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"prepare": "husky"
},
"peerDependencies": {
"@dnd-kit/core": ">=6.0.0",
"@dnd-kit/sortable": ">=10.0.0",
"@dnd-kit/utilities": ">=3.0.0",
"@emotion/react": ">=11.0.0",
"@emotion/styled": ">=11.0.0",
"@mui/icons-material": ">=5.0.0",
"@mui/material": ">=5.0.0",
"react": ">=18.0.0",
"react-dom": ">=18.0.0"
},
"devDependencies": {
"@commitlint/cli": "^20.5.0",
"@commitlint/config-conventional": "^20.5.0",
"@dnd-kit/core": "^6.3.1",
"@dnd-kit/sortable": "^10.0.0",
"@dnd-kit/utilities": "^3.2.2",
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.1",
"@mui/icons-material": "^7.3.9",
"@mui/material": "^7.3.9",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/debug": "^4.1.13",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@typescript-eslint/eslint-plugin": "^8.57.2",
"@typescript-eslint/parser": "^8.57.2",
"@vitest/coverage-v8": "^4.1.2",
"eslint": "^9.39.4",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-react-hooks": "^7.0.1",
"husky": "^9.1.7",
"jsdom": "^29.0.1",
"prettier": "^3.8.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"semantic-release": "^25.0.3",
"tsup": "^8.3.5",
"typescript": "^5.6.3",
"vitest": "^4.1.2"
},
"keywords": [
"react",
"react-component",
"ui",
"component",
"control",
"condition",
"condition-builder",
"query-builder",
"natural-language",
"autocomplete",
"autosuggest",
"fuzzy-search",
"drag-drop",
"mui",
"material-ui",
"visual-logic",
"rule-engine",
"filter-builder",
"json-logic",
"admin-ui",
"no-code"
],
"repository": {
"type": "git",
"url": "https://github.com/asafdl/react-conditional-ui.git"
},
"homepage": "https://asafdl.github.io/react-conditional-ui/",
"bugs": {
"url": "https://github.com/asafdl/react-conditional-ui/issues"
},
"license": "MIT",
"dependencies": {
"debug": "^4.4.3",
"fuse.js": "^7.1.0"
}
}