@openorgus/react 0.0.2 → 0.0.4

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 +5 -5
  2. package/package.json +76 -37
package/README.md CHANGED
@@ -1,15 +1,15 @@
1
- # @opengrid/react
1
+ # @openorgus/react
2
2
 
3
3
  OpenGrid Design System - A comprehensive React component library with 81 production-ready components.
4
4
 
5
5
  ## 🚀 Installation
6
6
 
7
7
  ```bash
8
- npm install @opengrid/react
8
+ npm install @openorgus/react
9
9
  # or
10
- yarn add @opengrid/react
10
+ yarn add @openorgus/react
11
11
  # or
12
- pnpm add @opengrid/react
12
+ pnpm add @openorgus/react
13
13
  ```
14
14
 
15
15
  ## 📦 Components
@@ -44,7 +44,7 @@ InteractiveCursor, MagnetLines, PixelTrail, DecayCard
44
44
  ## 💡 Usage
45
45
 
46
46
  ```jsx
47
- import { Button, Card, TextField } from '@opengrid/react';
47
+ import { Button, Card, TextField } from '@openorgus/react';
48
48
 
49
49
  function App() {
50
50
  return (
package/package.json CHANGED
@@ -1,38 +1,77 @@
1
- {
2
- "name": "@openorgus/react",
3
- "version": "0.0.2",
4
- "type": "module",
5
- "module": "dist/opengrid-react.es.js",
6
- "types": "dist/index.d.ts",
7
- "files": [
8
- "dist"
9
- ],
10
- "exports": {
11
- ".": {
12
- "import": "./dist/opengrid-react.es.js",
13
- "types": "./dist/index.d.ts"
14
- }
15
- },
16
- "scripts": {
17
- "dev": "vite",
18
- "build": "vite build",
19
- "lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
20
- "preview": "vite preview"
21
- },
22
- "peerDependencies": {
23
- "react": "^19.0.0",
24
- "react-dom": "^19.0.0"
25
- },
26
- "devDependencies": {
27
- "@types/node": "^20.0.0",
28
- "@types/react": "^19.0.0",
29
- "@types/react-dom": "^19.0.0",
30
- "@vitejs/plugin-react": "^4.0.0",
31
- "typescript": "^5.0.0",
32
- "vite": "^5.0.0",
33
- "vite-plugin-dts": "^3.0.0"
34
- },
35
- "dependencies": {
36
- "lucide-react": "^0.263.1"
37
- }
1
+ {
2
+ "name": "@openorgus/react",
3
+ "publishConfig": {
4
+ "access": "public"
5
+ },
6
+ "version": "0.0.4",
7
+ "description": "A comprehensive React component library with 81 production-ready components by OpenOrgus.",
8
+ "author": "OpenOrgus",
9
+ "license": "MIT",
10
+ "keywords": [
11
+ "react",
12
+ "design-system",
13
+ "ui-kit",
14
+ "components",
15
+ "tailwind"
16
+ ],
17
+ "repository": {
18
+ "type": "git",
19
+ "url": "https://github.com/openorgus/react.git"
20
+ },
21
+ "type": "module",
22
+ "module": "dist/openorgus-react.es.js",
23
+ "types": "dist/index.d.ts",
24
+ "files": [
25
+ "dist"
26
+ ],
27
+ "exports": {
28
+ ".": {
29
+ "import": "./dist/openorgus-react.es.js",
30
+ "types": "./dist/index.d.ts"
31
+ }
32
+ },
33
+ "scripts": {
34
+ "dev": "vite",
35
+ "build": "vite build",
36
+ "lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
37
+ "preview": "vite preview"
38
+ },
39
+ "peerDependencies": {
40
+ "react": "^19.0.0",
41
+ "react-dom": "^19.0.0"
42
+ },
43
+ "devDependencies": {
44
+ "@types/file-saver": "^2.0.7",
45
+ "@types/node": "^20.0.0",
46
+ "@types/react": "^19.0.0",
47
+ "@types/react-dom": "^19.0.0",
48
+ "@types/react-syntax-highlighter": "^15.5.13",
49
+ "@vitejs/plugin-react": "^4.0.0",
50
+ "typescript": "^5.0.0",
51
+ "vite": "^5.0.0",
52
+ "vite-plugin-dts": "^3.0.0"
53
+ },
54
+ "dependencies": {
55
+ "@emotion/react": "^11.14.0",
56
+ "@emotion/styled": "^11.14.1",
57
+ "@fortawesome/fontawesome-svg-core": "^7.1.0",
58
+ "@fortawesome/free-brands-svg-icons": "^7.1.0",
59
+ "@fortawesome/free-regular-svg-icons": "^7.1.0",
60
+ "@fortawesome/free-solid-svg-icons": "^7.1.0",
61
+ "@fortawesome/react-fontawesome": "^3.1.1",
62
+ "@monaco-editor/react": "^4.7.0",
63
+ "@mui/icons-material": "^7.3.6",
64
+ "@mui/material": "^7.3.6",
65
+ "cursor-effects": "^1.0.18",
66
+ "date-fns": "^4.1.0",
67
+ "file-saver": "^2.0.5",
68
+ "idb": "^8.0.3",
69
+ "jszip": "^3.10.1",
70
+ "lucide-react": "^0.555.0",
71
+ "react-dropzone": "^14.3.8",
72
+ "react-markdown": "^10.1.0",
73
+ "react-syntax-highlighter": "^16.1.0",
74
+ "recharts": "^3.5.1",
75
+ "zustand": "^5.0.9"
76
+ }
38
77
  }