wini-web-components 2.9.0 → 2.9.3

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,66 +1,75 @@
1
- {
2
- "name": "wini-web-components",
3
- "version": "2.9.0",
4
- "main": "dist/index.js",
5
- "module": "dist/index.esm.js",
6
- "types": "dist/index.d.ts",
7
- "files": [
8
- "dist"
9
- ],
10
- "sideEffects": ["**/*.css"],
11
- "scripts": {
12
- "build": "tsc && vite build",
13
- "prepublishOnly": "npm run build"
14
- },
15
- "peerDependencies": {
16
- "react": "^18.0.0",
17
- "react-dom": "^18.0.0"
18
- },
19
- "dependencies": {
20
- "@ckeditor/ckeditor5-react": "^9.5.0",
21
- "ckeditor5": "^44.3.0",
22
- "date-fns": "^4.1.0",
23
- "react": "^18.0.0",
24
- "react-awesome-slider": "^4.1.0",
25
- "react-dom": "^18.0.0",
26
- "react-hook-form": "^7.54.2",
27
- "react-i18next": "^15.4.1",
28
- "react-paginate": "^8.3.0",
29
- "react-toastify": "^11.0.5"
30
- },
31
- "devDependencies": {
32
- "@eslint/js": "^9.21.0",
33
- "@types/react": "^19.0.10",
34
- "@types/react-dom": "^19.0.4",
35
- "@vitejs/plugin-react": "^4.3.4",
36
- "eslint": "^9.21.0",
37
- "eslint-plugin-react-hooks": "^5.1.0",
38
- "eslint-plugin-react-refresh": "^0.4.19",
39
- "globals": "^15.15.0",
40
- "path": "^0.12.7",
41
- "sass": "^1.85.1",
42
- "tsup": "^8.4.0",
43
- "typescript": "^5.8.2",
44
- "typescript-eslint": "^8.24.1",
45
- "url": "^0.11.4",
46
- "vite": "^6.2.0",
47
- "vite-plugin-dts": "^4.5.3"
48
- },
49
- "publishConfig": {
50
- "registry": "https://registry.npmjs.org/",
51
- "access": "public"
52
- },
53
- "repository": {
54
- "type": "git",
55
- "url": "git+https://github.com/WiniGit/web-component.git"
56
- },
57
- "keywords": [
58
- "wini"
59
- ],
60
- "author": "thunt",
61
- "license": "MIT",
62
- "bugs": {
63
- "url": "https://github.com/WiniGit/web-component/issues"
64
- },
65
- "homepage": "https://github.com/WiniGit/web-component#readme"
66
- }
1
+ {
2
+ "name": "wini-web-components",
3
+ "private": false,
4
+ "description": "A simple ui library for React",
5
+ "version": "2.9.3",
6
+ "main": "dist/index.umd.js",
7
+ "module": "dist/index.es.js",
8
+ "types": "dist/index.d.ts",
9
+ "files": [
10
+ "/dist"
11
+ ],
12
+ "exports": {
13
+ ".": {
14
+ "import": "./dist/index.es.js",
15
+ "require": "./dist/index.umd.js",
16
+ "types": "./dist/index.d.ts"
17
+ }
18
+ },
19
+ "scripts": {
20
+ "build": "tsc && vite build",
21
+ "lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
22
+ "prepublishOnly": "npm run build"
23
+ },
24
+ "peerDependencies": {
25
+ "react": "^18.0.0",
26
+ "react-dom": "^18.0.0"
27
+ },
28
+ "dependencies": {
29
+ "@ckeditor/ckeditor5-react": "^9.5.0",
30
+ "ckeditor5": "^44.3.0",
31
+ "date-fns": "^4.1.0",
32
+ "react": "^18.0.0",
33
+ "react-awesome-slider": "^4.1.0",
34
+ "react-dom": "^18.0.0",
35
+ "react-hook-form": "^7.54.2",
36
+ "react-i18next": "^15.4.1",
37
+ "react-paginate": "^8.3.0",
38
+ "react-toastify": "^11.0.5"
39
+ },
40
+ "devDependencies": {
41
+ "@eslint/js": "^9.21.0",
42
+ "@types/react": "^19.0.10",
43
+ "@types/react-dom": "^19.0.4",
44
+ "@vitejs/plugin-react": "^4.3.4",
45
+ "eslint": "^9.21.0",
46
+ "eslint-plugin-react-hooks": "^5.1.0",
47
+ "eslint-plugin-react-refresh": "^0.4.19",
48
+ "globals": "^15.15.0",
49
+ "path": "^0.12.7",
50
+ "sass": "^1.85.1",
51
+ "tsup": "^8.4.0",
52
+ "typescript": "^5.8.2",
53
+ "typescript-eslint": "^8.24.1",
54
+ "url": "^0.11.4",
55
+ "vite": "^6.2.0",
56
+ "vite-plugin-dts": "^4.5.3"
57
+ },
58
+ "publishConfig": {
59
+ "registry": "https://registry.npmjs.org/",
60
+ "access": "public"
61
+ },
62
+ "repository": {
63
+ "type": "git",
64
+ "url": "git+https://github.com/WiniGit/web-component.git"
65
+ },
66
+ "keywords": [
67
+ "wini"
68
+ ],
69
+ "author": "thunt",
70
+ "license": "MIT",
71
+ "bugs": {
72
+ "url": "https://github.com/WiniGit/web-component/issues"
73
+ },
74
+ "homepage": "https://github.com/WiniGit/web-component#readme"
75
+ }