react-conditional-ui 1.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json ADDED
@@ -0,0 +1,82 @@
1
+ {
2
+ "name": "react-conditional-ui",
3
+ "version": "1.2.0",
4
+ "description": "A React component for building conditions using natural language input",
5
+ "type": "module",
6
+ "main": "./dist/index.cjs",
7
+ "module": "./dist/index.js",
8
+ "types": "./dist/index.d.ts",
9
+ "exports": {
10
+ ".": {
11
+ "types": "./dist/index.d.ts",
12
+ "import": "./dist/index.js",
13
+ "require": "./dist/index.cjs"
14
+ },
15
+ "./styles.css": "./dist/styles.css"
16
+ },
17
+ "files": [
18
+ "dist",
19
+ "logo.png"
20
+ ],
21
+ "scripts": {
22
+ "build": "tsup",
23
+ "dev": "npm run dev --prefix demo",
24
+ "lint": "eslint src/ demo/",
25
+ "format": "prettier --write .",
26
+ "format:check": "prettier --check .",
27
+ "test": "vitest run",
28
+ "test:watch": "vitest",
29
+ "test:coverage": "vitest run --coverage",
30
+ "prepare": "husky"
31
+ },
32
+ "peerDependencies": {
33
+ "@dnd-kit/core": ">=6.0.0",
34
+ "@dnd-kit/sortable": ">=10.0.0",
35
+ "@dnd-kit/utilities": ">=3.0.0",
36
+ "@emotion/react": ">=11.0.0",
37
+ "@emotion/styled": ">=11.0.0",
38
+ "@mui/icons-material": ">=5.0.0",
39
+ "@mui/material": ">=5.0.0",
40
+ "react": ">=18.0.0",
41
+ "react-dom": ">=18.0.0"
42
+ },
43
+ "devDependencies": {
44
+ "@commitlint/cli": "^20.5.0",
45
+ "@commitlint/config-conventional": "^20.5.0",
46
+ "@dnd-kit/core": "^6.3.1",
47
+ "@dnd-kit/sortable": "^10.0.0",
48
+ "@dnd-kit/utilities": "^3.2.2",
49
+ "@emotion/react": "^11.14.0",
50
+ "@emotion/styled": "^11.14.1",
51
+ "@mui/icons-material": "^7.3.9",
52
+ "@mui/material": "^7.3.9",
53
+ "@semantic-release/changelog": "^6.0.3",
54
+ "@semantic-release/git": "^10.0.1",
55
+ "@testing-library/jest-dom": "^6.9.1",
56
+ "@testing-library/react": "^16.3.2",
57
+ "@testing-library/user-event": "^14.6.1",
58
+ "@types/debug": "^4.1.13",
59
+ "@types/react": "^18.3.12",
60
+ "@types/react-dom": "^18.3.1",
61
+ "@typescript-eslint/eslint-plugin": "^8.57.2",
62
+ "@typescript-eslint/parser": "^8.57.2",
63
+ "@vitest/coverage-v8": "^4.1.2",
64
+ "eslint": "^9.39.4",
65
+ "eslint-config-prettier": "^10.1.8",
66
+ "eslint-plugin-react-hooks": "^7.0.1",
67
+ "husky": "^9.1.7",
68
+ "jsdom": "^29.0.1",
69
+ "prettier": "^3.8.1",
70
+ "react": "^18.3.1",
71
+ "react-dom": "^18.3.1",
72
+ "semantic-release": "^25.0.3",
73
+ "tsup": "^8.3.5",
74
+ "typescript": "^5.6.3",
75
+ "vitest": "^4.1.2"
76
+ },
77
+ "license": "MIT",
78
+ "dependencies": {
79
+ "debug": "^4.4.3",
80
+ "fuse.js": "^7.1.0"
81
+ }
82
+ }