oziko-ui-kit 0.0.1

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 (2) hide show
  1. package/README.md +3 -0
  2. package/package.json +99 -0
package/README.md ADDED
@@ -0,0 +1,3 @@
1
+ # Spica UI Kit
2
+
3
+ This project is a library of reusable UI components developed using React. The library is designed to simplify and standardize the creation of user interfaces across different projects.
package/package.json ADDED
@@ -0,0 +1,99 @@
1
+ {
2
+ "name": "oziko-ui-kit",
3
+ "version": "0.0.1",
4
+ "private": false,
5
+ "main": "dist/index.cjs.js",
6
+ "module": "dist/index.mjs",
7
+ "types": "dist/index.d.ts",
8
+ "files": [
9
+ "dist",
10
+ "dist/index.css"
11
+ ],
12
+ "sideEffects": [
13
+ "*.css"
14
+ ],
15
+ "dependencies": {
16
+ "@emotion/react": "^11.14.0",
17
+ "@emotion/styled": "^11.14.0",
18
+ "@lexical/react": "^0.23.1",
19
+ "@mui/icons-material": "^6.3.1",
20
+ "@mui/material": "^6.3.1",
21
+ "antd": "^5.23.1",
22
+ "chart.js": "^4.4.7",
23
+ "chartjs-adapter-date-fns": "^3.0.0",
24
+ "chartjs-plugin-annotation": "^3.1.0",
25
+ "chartjs-plugin-zoom": "^2.2.0",
26
+ "cra-template-typescript": "1.2.0",
27
+ "date-fns": "^4.1.0",
28
+ "formik": "^2.4.6",
29
+ "leaflet": "^1.9.4",
30
+ "lexical": "^0.23.1",
31
+ "react-chartjs-2": "^5.3.0",
32
+ "react-draggable": "^4.4.6",
33
+ "react-dropzone": "^14.3.5",
34
+ "react-grid-layout": "1.4.4",
35
+ "react-leaflet": "^5.0.0",
36
+ "react-resizable": "^3.0.5",
37
+ "react-scripts": "^5.0.1",
38
+ "sass": "^1.83.1",
39
+ "tslib": "^2.8.1"
40
+ },
41
+ "scripts": {
42
+ "start": "react-scripts start",
43
+ "build": "react-scripts build",
44
+ "test": "react-scripts test",
45
+ "eject": "react-scripts eject",
46
+ "format": "prettier --write \"src/**/*.{ts,js,tsx,jsx,json,css,scss,html}\"",
47
+ "rollup-clean-css": "sed -i '' '/@charset/d' build/dist/index.css",
48
+ "rollup": "rollup -c && yarn run rollup-clean-css",
49
+ "prepublishOnly": "yarn run rollup",
50
+ "publish": "npm publish"
51
+ },
52
+ "eslintConfig": {
53
+ "extends": [
54
+ "react-app",
55
+ "react-app/jest"
56
+ ]
57
+ },
58
+ "browserslist": {
59
+ "production": [
60
+ ">0.2%",
61
+ "not dead",
62
+ "not op_mini all"
63
+ ],
64
+ "development": [
65
+ "last 1 chrome version",
66
+ "last 1 firefox version",
67
+ "last 1 safari version"
68
+ ]
69
+ },
70
+ "devDependencies": {
71
+ "@rollup/plugin-alias": "^5.1.1",
72
+ "@rollup/plugin-commonjs": "^28.0.2",
73
+ "@rollup/plugin-node-resolve": "^16.0.0",
74
+ "@rollup/plugin-terser": "^0.4.4",
75
+ "@rollup/plugin-typescript": "^12.1.2",
76
+ "@rollup/plugin-url": "^8.0.2",
77
+ "@testing-library/react": "^16.1.0",
78
+ "@types/leaflet": "^1.9.16",
79
+ "@types/mocha": "^10.0.10",
80
+ "@types/react": "^19.0.6",
81
+ "@types/react-dom": "^19.0.3",
82
+ "@types/react-grid-layout": "^1.3.5",
83
+ "postcss-discard-comments": "^7.0.3",
84
+ "prettier": "3.4.2",
85
+ "react": "^19.0.0",
86
+ "react-dom": "^19.0.0",
87
+ "rollup-plugin-copy": "^3.5.0",
88
+ "rollup-plugin-dts": "^6.1.1",
89
+ "rollup-plugin-peer-deps-external": "^2.2.4",
90
+ "rollup-plugin-postcss": "^4.0.2",
91
+ "rollup-plugin-styles": "^4.0.0",
92
+ "typescript": "^5.7.3",
93
+ "web-vitals": "^4.2.4"
94
+ },
95
+ "peerDependencies": {
96
+ "react": "^19.0.0",
97
+ "react-dom": "^19.0.0"
98
+ }
99
+ }