@ronnydrori/jupiter-ui 1.0.0
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/README.md +483 -0
- package/dist/index.d.ts +396 -0
- package/dist/index.js +4774 -0
- package/package.json +73 -0
package/package.json
ADDED
|
@@ -0,0 +1,73 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@ronnydrori/jupiter-ui",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"type": "module",
|
|
5
|
+
"description": "Jupiter Design System - Plug and play UI components with Mantine and Emotion",
|
|
6
|
+
"main": "./dist/index.ts",
|
|
7
|
+
"files": ["dist"],
|
|
8
|
+
"types": "./dist/index.ts",
|
|
9
|
+
"exports": {
|
|
10
|
+
".": {
|
|
11
|
+
"import": "./dist/index.ts",
|
|
12
|
+
"types": "./dist/index.ts"
|
|
13
|
+
},
|
|
14
|
+
"./utils/usePalette": {
|
|
15
|
+
"import": "./utils/usePalette.ts",
|
|
16
|
+
"types": "./utils/usePalette.ts"
|
|
17
|
+
}
|
|
18
|
+
},
|
|
19
|
+
"scripts": {
|
|
20
|
+
"storybook": "storybook dev -p 6006",
|
|
21
|
+
"build-storybook": "storybook build",
|
|
22
|
+
"build": "vite build",
|
|
23
|
+
"test:unit": "vitest run",
|
|
24
|
+
"typecheck": "tsc --noEmit",
|
|
25
|
+
"lint": "eslint .",
|
|
26
|
+
"lint:fix": "eslint --fix ."
|
|
27
|
+
},
|
|
28
|
+
"dependencies": {
|
|
29
|
+
"@emotion/react": "^11.13.5",
|
|
30
|
+
"@emotion/styled": "^11.13.5",
|
|
31
|
+
"@mantine/core": "^7.15.1",
|
|
32
|
+
"@mantine/hooks": "^7.15.1",
|
|
33
|
+
"@vitejs/plugin-react": "^5.1.4",
|
|
34
|
+
"lucide-react": "^0.469.0",
|
|
35
|
+
"phosphor-react": "^1.4.1",
|
|
36
|
+
"vite-plugin-dts": "^4.5.4"
|
|
37
|
+
},
|
|
38
|
+
"devDependencies": {
|
|
39
|
+
"@chromatic-com/storybook": "^3.2.2",
|
|
40
|
+
"@eslint/js": "^9.17.0",
|
|
41
|
+
"@storybook/addon-essentials": "^8.6.14",
|
|
42
|
+
"@storybook/addon-links": "^8.6.14",
|
|
43
|
+
"@storybook/blocks": "^8.6.14",
|
|
44
|
+
"@storybook/experimental-addon-test": "^8.6.14",
|
|
45
|
+
"@storybook/react": "^8.6.14",
|
|
46
|
+
"@storybook/react-vite": "^8.6.14",
|
|
47
|
+
"@storybook/test": "^8.6.14",
|
|
48
|
+
"@types/react": "^18.3.12",
|
|
49
|
+
"@types/react-dom": "^18.3.1",
|
|
50
|
+
"@typescript-eslint/eslint-plugin": "^8.18.1",
|
|
51
|
+
"@typescript-eslint/parser": "^8.18.1",
|
|
52
|
+
"@vitest/browser": "^3.2.4",
|
|
53
|
+
"@vitest/coverage-v8": "^3.2.4",
|
|
54
|
+
"eslint": "^9.17.0",
|
|
55
|
+
"eslint-plugin-react": "^7.37.5",
|
|
56
|
+
"eslint-plugin-react-hooks": "^7.0.1",
|
|
57
|
+
"eslint-plugin-storybook": "^0.11.1",
|
|
58
|
+
"playwright": "^1.57.0",
|
|
59
|
+
"react": "^18.3.1",
|
|
60
|
+
"react-dom": "^18.3.1",
|
|
61
|
+
"storybook": "^8.6.14",
|
|
62
|
+
"storybook-addon-mantine": "4.0.2",
|
|
63
|
+
"storybook-dark-mode": "4.0.2",
|
|
64
|
+
"typescript": "^5.5.4",
|
|
65
|
+
"typescript-eslint": "^8.18.1",
|
|
66
|
+
"vite": "^5.4.11",
|
|
67
|
+
"vitest": "^3.2.4"
|
|
68
|
+
},
|
|
69
|
+
"peerDependencies": {
|
|
70
|
+
"react": "^18.0.0",
|
|
71
|
+
"react-dom": "^18.0.0"
|
|
72
|
+
}
|
|
73
|
+
}
|