-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathpackage.json
More file actions
101 lines (101 loc) · 2.69 KB
/
package.json
File metadata and controls
101 lines (101 loc) · 2.69 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
{
"name": "@vojtechportes/react-query-builder",
"version": "1.3.0",
"license": "MIT",
"description": "Simple, highly configurable query builder for react",
"keywords": [
"react",
"query",
"builder",
"query builder",
"query-builder",
"react-query-builder",
"typescript",
"configurable"
],
"author": {
"email": "vojtech.v.portes@gmail.com",
"name": "Vojtech Portes",
"url": "https://www.github.com/vojtechportes"
},
"homepage": "https://github.com/vojtechportes/react-query-builder",
"repository": {
"type": "git",
"url": "https://github.com/vojtechportes/react-query-builder.git"
},
"packageManager": "npm@10.9.0",
"workspaces": [
"example"
],
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
}
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"files": [
"dist"
],
"scripts": {
"build": "tsdown && node scripts/copy-dts.mjs",
"dev": "tsdown --watch",
"test": "jest --runInBand",
"test:update": "jest --updateSnapshot --runInBand",
"test:watch": "jest --watch",
"lint": "eslint .",
"prettier:check": "prettier --check .",
"example:dev": "npm run dev --workspace example",
"example:build": "npm run build --workspace example",
"check": "npm run lint && npm run test && npm run build && npm run example:build",
"prepublishOnly": "npm run build"
},
"prettier": {
"printWidth": 80,
"semi": true,
"singleQuote": true,
"trailingComma": "es5"
},
"peerDependencies": {
"react": "^18.0.0 || ^19.0.0",
"react-dom": "^18.0.0 || ^19.0.0"
},
"dependencies": {
"@dnd-kit/core": "^6.3.1",
"@dnd-kit/sortable": "^10.0.0",
"styled-components": "^4.4.1",
"tslib": "^2.8.1"
},
"devDependencies": {
"@cfaester/enzyme-adapter-react-18": "^0.8.0",
"@eslint/js": "^9.15.0",
"@types/enzyme": "^3.10.19",
"@types/jest": "^29.5.14",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@types/styled-components": "^5.1.34",
"enzyme": "^3.11.0",
"enzyme-to-json": "^3.6.2",
"eslint": "^9.15.0",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-react-hooks": "^5.0.0",
"globals": "^15.12.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-util": "^29.7.0",
"prettier": "^3.4.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-test-renderer": "^18.3.1",
"ts-jest": "^29.2.5",
"tsdown": "^0.21.10",
"typescript": "^5.6.3",
"typescript-eslint": "^8.16.0"
}
}