@sito/dashboard-app 0.0.4 → 0.0.6

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.
Files changed (3) hide show
  1. package/LICENSE +21 -21
  2. package/README.md +59 -59
  3. package/package.json +91 -91
package/LICENSE CHANGED
@@ -1,21 +1,21 @@
1
- MIT License
2
-
3
- Copyright (c) 2024 Sito
4
-
5
- Permission is hereby granted, free of charge, to any person obtaining a copy
6
- of this software and associated documentation files (the "Software"), to deal
7
- in the Software without restriction, including without limitation the rights
8
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
- copies of the Software, and to permit persons to whom the Software is
10
- furnished to do so, subject to the following conditions:
11
-
12
- The above copyright notice and this permission notice shall be included in all
13
- copies or substantial portions of the Software.
14
-
15
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
- SOFTWARE.
1
+ MIT License
2
+
3
+ Copyright (c) 2024 Sito
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
package/README.md CHANGED
@@ -1,60 +1,60 @@
1
- # @sito/dashboard-app
2
-
3
- ## Features
4
-
5
- ## Installation
6
-
7
- To install the library, use npm or yarn:
8
-
9
- ```bash
10
- # Using npm
11
- npm install @sito/dashboard-app
12
-
13
- # Using yarn
14
- yarn add @sito/dashboard-app
15
- ```
16
-
17
- ## Development
18
-
19
- Running Locally
20
-
21
- To run the project locally:
22
-
23
- 1. Clone the repository:
24
-
25
- ```bash
26
- git clone https://github.com/your-repo/sito-dashboard-app.git
27
-
28
- cd sito-dashboard-app
29
- ```
30
-
31
- 2. Install dependencies:
32
-
33
- ```bash
34
- npm install
35
- ```
36
-
37
- 3. Start the development server
38
-
39
- ```bash
40
- npm start
41
- ```
42
-
43
- Building the Library
44
-
45
- To build the library for production
46
-
47
- ```bash
48
- npm run build
49
- ```
50
-
51
- ## Contributing
52
-
53
- Contributions are welcome! Please follow these steps:
54
- 1. Fork the repository.
55
- 2. Create a new branch for your feature or bugfix.
56
- 3. Submit a pull request with a detailed description of your changes.
57
-
58
- ## License
59
-
1
+ # @sito/dashboard-app
2
+
3
+ ## Features
4
+
5
+ ## Installation
6
+
7
+ To install the library, use npm or yarn:
8
+
9
+ ```bash
10
+ # Using npm
11
+ npm install @sito/dashboard-app
12
+
13
+ # Using yarn
14
+ yarn add @sito/dashboard-app
15
+ ```
16
+
17
+ ## Development
18
+
19
+ Running Locally
20
+
21
+ To run the project locally:
22
+
23
+ 1. Clone the repository:
24
+
25
+ ```bash
26
+ git clone https://github.com/your-repo/sito-dashboard-app.git
27
+
28
+ cd sito-dashboard-app
29
+ ```
30
+
31
+ 2. Install dependencies:
32
+
33
+ ```bash
34
+ npm install
35
+ ```
36
+
37
+ 3. Start the development server
38
+
39
+ ```bash
40
+ npm start
41
+ ```
42
+
43
+ Building the Library
44
+
45
+ To build the library for production
46
+
47
+ ```bash
48
+ npm run build
49
+ ```
50
+
51
+ ## Contributing
52
+
53
+ Contributions are welcome! Please follow these steps:
54
+ 1. Fork the repository.
55
+ 2. Create a new branch for your feature or bugfix.
56
+ 3. Submit a pull request with a detailed description of your changes.
57
+
58
+ ## License
59
+
60
60
  This project is licensed under the MIT License.
package/package.json CHANGED
@@ -1,91 +1,91 @@
1
- {
2
- "name": "@sito/dashboard-app",
3
- "private": false,
4
- "version": "0.0.4",
5
- "type": "module",
6
- "description": "UI Library with prefab components",
7
- "main": "dist/dashboard-app.cjs",
8
- "module": "dist/dashboard-app.js",
9
- "types": "dist/index.d.ts",
10
- "files": [
11
- "dist/"
12
- ],
13
- "homepage": "https://github.com/sito8943/-sito-dashboard-app#readme",
14
- "repository": {
15
- "type": "git",
16
- "url": "https://github.com/sito8943/-sito-dashboard-app.git"
17
- },
18
- "bugs": {
19
- "url": "https://github.com/sito8943/-sito-dashboard-app/issues"
20
- },
21
- "exports": {
22
- ".": {
23
- "types": "./dist/index.d.ts",
24
- "import": "./dist/dashboard-app.js",
25
- "require": "./dist/dashboard-app.cjs"
26
- }
27
- },
28
- "sideEffects": [
29
- "**/*.css"
30
- ],
31
- "scripts": {
32
- "dev": "vite",
33
- "build": "tsc && vite build",
34
- "lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
35
- "preview": "vite preview",
36
- "format": "prettier --write \"src/**/*.{js,jsx,ts,tsx,json,css,scss,md}\""
37
- },
38
- "keywords": [
39
- "sito",
40
- "dashboard",
41
- "components"
42
- ],
43
- "author": "sito8943",
44
- "license": "ISC",
45
- "peerDependencies": {
46
- "@emotion/css": "11.13.5",
47
- "@tanstack/react-query": "5.83.0",
48
- "react": "18.3.1",
49
- "react-dom": "18.3.1",
50
- "react-hook-form": "7.61.1",
51
- "@fortawesome/fontawesome-svg-core": "7.0.0",
52
- "@fortawesome/free-brands-svg-icons": "7.0.0",
53
- "@fortawesome/free-regular-svg-icons": "7.0.0",
54
- "@fortawesome/free-solid-svg-icons": "7.0.0",
55
- "@fortawesome/react-fontawesome": "0.2.3",
56
- "@sito/dashboard": "^0.0.49"
57
- },
58
- "devDependencies": {
59
- "@tailwindcss/vite": "4.1.11",
60
- "@types/node": "20.8.10",
61
- "@types/react": "18.3.3",
62
- "@types/react-dom": "18.2.14",
63
- "@vitejs/plugin-react-swc": "3.7.2",
64
- "autoprefixer": "10.4.16",
65
- "eslint": "9.19.0",
66
- "eslint-plugin-react-hooks": "5.0.0",
67
- "eslint-plugin-react-refresh": "0.4.18",
68
- "prettier": "3.3.3",
69
- "rollup-plugin-visualizer": "^6.0.4",
70
- "tailwindcss": "4.1.11",
71
- "typescript": "5.7.2",
72
- "typescript-eslint": "8.22.0",
73
- "vite": "6.1.0",
74
- "vite-plugin-dts": "4.0.2",
75
- "vite-plugin-lib-inject-css": "1.3.0",
76
- "@emotion/css": "11.13.5",
77
- "@tanstack/react-query": "5.83.0",
78
- "react": "18.3.1",
79
- "react-dom": "18.3.1",
80
- "react-hook-form": "7.61.1",
81
- "@fortawesome/fontawesome-svg-core": "7.0.0",
82
- "@fortawesome/free-brands-svg-icons": "7.0.0",
83
- "@fortawesome/free-regular-svg-icons": "7.0.0",
84
- "@fortawesome/free-solid-svg-icons": "7.0.0",
85
- "@fortawesome/react-fontawesome": "0.2.3",
86
- "@sito/dashboard": "^0.0.49"
87
- },
88
- "dependencies": {
89
- "some-javascript-utils": "^0.10.10"
90
- }
91
- }
1
+ {
2
+ "name": "@sito/dashboard-app",
3
+ "private": false,
4
+ "version": "0.0.6",
5
+ "type": "module",
6
+ "description": "UI Library with prefab components",
7
+ "main": "dist/dashboard-app.cjs",
8
+ "module": "dist/dashboard-app.js",
9
+ "types": "dist/index.d.ts",
10
+ "files": [
11
+ "dist/"
12
+ ],
13
+ "homepage": "https://github.com/sito8943/-sito-dashboard-app#readme",
14
+ "repository": {
15
+ "type": "git",
16
+ "url": "https://github.com/sito8943/-sito-dashboard-app.git"
17
+ },
18
+ "bugs": {
19
+ "url": "https://github.com/sito8943/-sito-dashboard-app/issues"
20
+ },
21
+ "exports": {
22
+ ".": {
23
+ "types": "./dist/index.d.ts",
24
+ "import": "./dist/dashboard-app.js",
25
+ "require": "./dist/dashboard-app.cjs"
26
+ }
27
+ },
28
+ "sideEffects": [
29
+ "**/*.css"
30
+ ],
31
+ "scripts": {
32
+ "dev": "vite",
33
+ "build": "tsc && vite build",
34
+ "lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
35
+ "preview": "vite preview",
36
+ "format": "prettier --write \"src/**/*.{js,jsx,ts,tsx,json,css,scss,md}\""
37
+ },
38
+ "keywords": [
39
+ "sito",
40
+ "dashboard",
41
+ "components"
42
+ ],
43
+ "author": "sito8943",
44
+ "license": "ISC",
45
+ "peerDependencies": {
46
+ "@emotion/css": "11.13.5",
47
+ "@tanstack/react-query": "5.83.0",
48
+ "react": "18.3.1",
49
+ "react-dom": "18.3.1",
50
+ "react-hook-form": "7.61.1",
51
+ "@fortawesome/fontawesome-svg-core": "7.0.0",
52
+ "@fortawesome/free-brands-svg-icons": "7.0.0",
53
+ "@fortawesome/free-regular-svg-icons": "7.0.0",
54
+ "@fortawesome/free-solid-svg-icons": "7.0.0",
55
+ "@fortawesome/react-fontawesome": "0.2.3",
56
+ "@sito/dashboard": "0.0.50"
57
+ },
58
+ "devDependencies": {
59
+ "@tailwindcss/vite": "4.1.11",
60
+ "@types/node": "20.8.10",
61
+ "@types/react": "18.3.3",
62
+ "@types/react-dom": "18.2.14",
63
+ "@vitejs/plugin-react-swc": "3.7.2",
64
+ "autoprefixer": "10.4.16",
65
+ "eslint": "9.19.0",
66
+ "eslint-plugin-react-hooks": "5.0.0",
67
+ "eslint-plugin-react-refresh": "0.4.18",
68
+ "prettier": "3.3.3",
69
+ "rollup-plugin-visualizer": "^6.0.4",
70
+ "tailwindcss": "4.1.11",
71
+ "typescript": "5.7.2",
72
+ "typescript-eslint": "8.22.0",
73
+ "vite": "6.1.0",
74
+ "vite-plugin-dts": "4.0.2",
75
+ "vite-plugin-lib-inject-css": "1.3.0",
76
+ "@emotion/css": "11.13.5",
77
+ "@tanstack/react-query": "5.83.0",
78
+ "react": "18.3.1",
79
+ "react-dom": "18.3.1",
80
+ "react-hook-form": "7.61.1",
81
+ "@fortawesome/fontawesome-svg-core": "7.0.0",
82
+ "@fortawesome/free-brands-svg-icons": "7.0.0",
83
+ "@fortawesome/free-regular-svg-icons": "7.0.0",
84
+ "@fortawesome/free-solid-svg-icons": "7.0.0",
85
+ "@fortawesome/react-fontawesome": "0.2.3",
86
+ "@sito/dashboard": "^0.0.49"
87
+ },
88
+ "dependencies": {
89
+ "some-javascript-utils": "0.10.10"
90
+ }
91
+ }