-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
120 lines (120 loc) · 3.26 KB
/
package.json
File metadata and controls
120 lines (120 loc) · 3.26 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
114
115
116
117
118
119
120
{
"name": "react-querybuilder-lite",
"private": false,
"version": "1.1.0",
"type": "module",
"description": "A lightweight, headless React query builder with drag-and-drop and Typescript support. Build complex filters visually.",
"author": "Nandhakumar Eswaran",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/NandhakumarE/react-querybuilder-lite.git"
},
"bugs": {
"url": "https://github.com/NandhakumarE/react-querybuilder-lite/issues"
},
"homepage": "https://github.com/NandhakumarE/react-querybuilder-lite#readme",
"keywords": [
"react",
"query-builder",
"querybuilder",
"visual-query-builder",
"filter-builder",
"react-query-builder",
"drag-and-drop",
"compound-components",
"typescript",
"dnd-kit",
"react19",
"headless"
],
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.ts",
"default": "./dist/index.cjs"
}
},
"./styles.css": "./dist/style.css"
},
"sideEffects": [
"*.css"
],
"engines": {
"node": ">=18"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"build:watch": "vite build --watch",
"test": "vitest",
"test:ui": "vitest --ui",
"typecheck": "tsc --noEmit",
"lint": "eslint .",
"preview": "vite preview",
"prepublishOnly": "npm run build",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0",
"react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0"
},
"dependencies": {
"@dnd-kit/core": "^6.3.1",
"@dnd-kit/utilities": "^3.2.2"
},
"devDependencies": {
"@chakra-ui/react": "^3.31.0",
"@changesets/cli": "^2.29.8",
"@chromatic-com/storybook": "^5.0.0",
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.1",
"@eslint/js": "^9.39.1",
"@mui/icons-material": "^7.3.7",
"@mui/material": "^7.3.7",
"@storybook/addon-a11y": "^10.1.11",
"@storybook/addon-docs": "^10.1.11",
"@storybook/addon-onboarding": "^10.1.11",
"@storybook/addon-vitest": "^10.1.11",
"@storybook/react-vite": "^10.1.11",
"@tailwindcss/vite": "^4.1.18",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.1",
"@types/node": "^24.10.1",
"@types/react": "^19.2.5",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^5.1.1",
"@vitest/browser-playwright": "^4.0.16",
"@vitest/coverage-v8": "^4.0.16",
"@vitest/ui": "^4.0.17",
"antd": "^6.2.1",
"dayjs": "^1.11.19",
"eslint": "^9.39.1",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-react-refresh": "^0.4.24",
"globals": "^16.5.0",
"happy-dom": "^20.0.11",
"playwright": "^1.57.0",
"react-icons": "^5.5.0",
"storybook": "^10.1.11",
"tailwindcss": "^4.1.18",
"typescript": "~5.9.3",
"typescript-eslint": "^8.46.4",
"vite": "^7.2.4",
"vite-plugin-dts": "^4.5.4",
"vitest": "^4.0.16"
}
}