dirk-cfx-react 1.1.71 → 1.1.73

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 CHANGED
@@ -1,113 +1,115 @@
1
- {
2
- "name": "dirk-cfx-react",
3
- "version": "1.1.71",
4
- "type": "module",
5
- "main": "./dist/index.cjs",
6
- "module": "./dist/index.js",
7
- "types": "./dist/index.d.ts",
8
- "exports": {
9
- ".": {
10
- "types": "./dist/index.d.ts",
11
- "import": "./dist/index.js",
12
- "require": "./dist/index.cjs"
13
- },
14
- "./components": {
15
- "types": "./dist/components/index.d.ts",
16
- "import": "./dist/components/index.js",
17
- "require": "./dist/components/index.cjs"
18
- },
19
- "./hooks": {
20
- "types": "./dist/hooks/index.d.ts",
21
- "import": "./dist/hooks/index.js",
22
- "require": "./dist/hooks/index.cjs"
23
- },
24
- "./utils": {
25
- "types": "./dist/utils/index.d.ts",
26
- "import": "./dist/utils/index.js",
27
- "require": "./dist/utils/index.cjs"
28
- },
29
- "./providers": {
30
- "types": "./dist/providers/index.d.ts",
31
- "import": "./dist/providers/index.js",
32
- "require": "./dist/providers/index.cjs"
33
- },
34
- "./*": {
35
- "types": "./dist/*.d.ts",
36
- "import": "./dist/*.js",
37
- "require": "./dist/*.cjs"
38
- }
39
- },
40
- "files": [
41
- "dist",
42
- "src/styles",
43
- "src/fonts"
44
- ],
45
- "scripts": {
46
- "build": "tsup",
47
- "watch": "tsup --watch",
48
- "prepublishOnly": "npm run build"
49
- },
50
- "devDependencies": {
51
- "@fortawesome/fontawesome-svg-core": ">=7.1.0",
52
- "@fortawesome/free-brands-svg-icons": ">=7.1.0",
53
- "@fortawesome/free-regular-svg-icons": ">=7.1.0",
54
- "@fortawesome/free-solid-svg-icons": ">=7.1.0",
55
- "@fortawesome/react-fontawesome": ">=3.1.0",
56
- "@mantine/core": ">=8.3.9",
57
- "@mantine/notifications": ">=8.3.9",
58
- "@tanstack/react-query": "^5.90.21",
59
- "@types/fs-extra": ">=11.0.4",
60
- "@types/leaflet": ">=1.9.21",
61
- "@types/node": ">=24.9.1",
62
- "@types/react": ">=19.2.2",
63
- "framer-motion": ">=12.23.24",
64
- "fs-extra": ">=11.3.2",
65
- "lucide-react": ">=0.547.0",
66
- "react": ">=19.2.0",
67
- "react-dom": ">=19.2.0",
68
- "tsup": ">=8.5.0",
69
- "typescript": ">=5.9.3",
70
- "zustand": ">=5.0.3"
71
- },
72
- "peerDependencies": {
73
- "@fortawesome/fontawesome-svg-core": ">=7.1.0",
74
- "@fortawesome/free-brands-svg-icons": ">=7.1.0",
75
- "@fortawesome/free-regular-svg-icons": ">=7.1.0",
76
- "@fortawesome/free-solid-svg-icons": ">=7.1.0",
77
- "@fortawesome/react-fontawesome": ">=3.1.0",
78
- "@mantine/core": ">=8.3.9",
79
- "@mantine/hooks": ">=8.3.9",
80
- "@mantine/notifications": ">=8.3.9",
81
- "@tanstack/react-query": "^5.90.21",
82
- "axios": ">=1.13.1",
83
- "framer-motion": ">=12.23.24",
84
- "lucide-react": ">=0.547.0",
85
- "react": ">=19.2.0",
86
- "react-dom": ">=19.2.0",
87
- "zustand": ">=5.0.3"
88
- },
89
- "sideEffects": [
90
- "**/*.css",
91
- "**/*.scss",
92
- "**/*.woff",
93
- "**/*.woff2",
94
- "**/*.ttf",
95
- "**/*.otf"
96
- ],
97
- "typesVersions": {
98
- "*": {
99
- "components": [
100
- "dist/components/index.d.ts"
101
- ],
102
- "hooks": [
103
- "dist/hooks/index.d.ts"
104
- ],
105
- "utils": [
106
- "dist/utils/index.d.ts"
107
- ],
108
- "providers": [
109
- "dist/providers/index.d.ts"
110
- ]
111
- }
112
- }
113
- }
1
+ {
2
+ "name": "dirk-cfx-react",
3
+ "version": "1.1.73",
4
+ "type": "module",
5
+ "main": "./dist/index.cjs",
6
+ "module": "./dist/index.js",
7
+ "types": "./dist/index.d.ts",
8
+ "exports": {
9
+ ".": {
10
+ "types": "./dist/index.d.ts",
11
+ "import": "./dist/index.js",
12
+ "require": "./dist/index.cjs"
13
+ },
14
+ "./components": {
15
+ "types": "./dist/components/index.d.ts",
16
+ "import": "./dist/components/index.js",
17
+ "require": "./dist/components/index.cjs"
18
+ },
19
+ "./hooks": {
20
+ "types": "./dist/hooks/index.d.ts",
21
+ "import": "./dist/hooks/index.js",
22
+ "require": "./dist/hooks/index.cjs"
23
+ },
24
+ "./utils": {
25
+ "types": "./dist/utils/index.d.ts",
26
+ "import": "./dist/utils/index.js",
27
+ "require": "./dist/utils/index.cjs"
28
+ },
29
+ "./providers": {
30
+ "types": "./dist/providers/index.d.ts",
31
+ "import": "./dist/providers/index.js",
32
+ "require": "./dist/providers/index.cjs"
33
+ },
34
+ "./*": {
35
+ "types": "./dist/*.d.ts",
36
+ "import": "./dist/*.js",
37
+ "require": "./dist/*.cjs"
38
+ }
39
+ },
40
+ "files": [
41
+ "dist",
42
+ "src/styles",
43
+ "src/fonts"
44
+ ],
45
+ "scripts": {
46
+ "build": "tsup",
47
+ "watch": "tsup --watch",
48
+ "prepublishOnly": "npm run build"
49
+ },
50
+ "devDependencies": {
51
+ "@fortawesome/fontawesome-svg-core": ">=7.1.0",
52
+ "@fortawesome/free-brands-svg-icons": ">=7.1.0",
53
+ "@fortawesome/free-regular-svg-icons": ">=7.1.0",
54
+ "@fortawesome/free-solid-svg-icons": ">=7.1.0",
55
+ "@fortawesome/react-fontawesome": ">=3.1.0",
56
+ "@mantine/core": ">=8.3.9",
57
+ "@mantine/notifications": ">=8.3.9",
58
+ "@tanstack/react-query": "^5.90.21",
59
+ "@types/fs-extra": ">=11.0.4",
60
+ "@types/leaflet": ">=1.9.21",
61
+ "@types/node": ">=24.9.1",
62
+ "@types/react": ">=19.2.2",
63
+ "framer-motion": ">=12.23.24",
64
+ "fs-extra": ">=11.3.2",
65
+ "lucide-react": ">=0.547.0",
66
+ "react": ">=19.2.0",
67
+ "react-dom": ">=19.2.0",
68
+ "tsup": ">=8.5.0",
69
+ "typescript": ">=5.9.3",
70
+ "zod": ">=3.22.0",
71
+ "zustand": ">=5.0.3"
72
+ },
73
+ "peerDependencies": {
74
+ "@fortawesome/fontawesome-svg-core": ">=7.1.0",
75
+ "@fortawesome/free-brands-svg-icons": ">=7.1.0",
76
+ "@fortawesome/free-regular-svg-icons": ">=7.1.0",
77
+ "@fortawesome/free-solid-svg-icons": ">=7.1.0",
78
+ "@fortawesome/react-fontawesome": ">=3.1.0",
79
+ "@mantine/core": ">=8.3.9",
80
+ "@mantine/hooks": ">=8.3.9",
81
+ "@mantine/notifications": ">=8.3.9",
82
+ "@tanstack/react-query": "^5.90.21",
83
+ "axios": ">=1.13.1",
84
+ "framer-motion": ">=12.23.24",
85
+ "lucide-react": ">=0.547.0",
86
+ "react": ">=19.2.0",
87
+ "react-dom": ">=19.2.0",
88
+ "zod": ">=3.22.0",
89
+ "zustand": ">=5.0.3"
90
+ },
91
+ "sideEffects": [
92
+ "**/*.css",
93
+ "**/*.scss",
94
+ "**/*.woff",
95
+ "**/*.woff2",
96
+ "**/*.ttf",
97
+ "**/*.otf"
98
+ ],
99
+ "typesVersions": {
100
+ "*": {
101
+ "components": [
102
+ "dist/components/index.d.ts"
103
+ ],
104
+ "hooks": [
105
+ "dist/hooks/index.d.ts"
106
+ ],
107
+ "utils": [
108
+ "dist/utils/index.d.ts"
109
+ ],
110
+ "providers": [
111
+ "dist/providers/index.d.ts"
112
+ ]
113
+ }
114
+ }
115
+ }