@myelmut/design-system 0.1.2

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 ADDED
@@ -0,0 +1,81 @@
1
+ {
2
+ "name": "@myelmut/design-system",
3
+ "version": "0.1.2",
4
+ "description": "Design system for Elmut project",
5
+ "repository": {
6
+ "type": "git",
7
+ "url": "https://github.com/myelmut/elmut-design-system.git"
8
+ },
9
+ "publishConfig": {
10
+ "access": "public"
11
+ },
12
+ "main": "dist/index.cjs.js",
13
+ "module": "dist/index.es.js",
14
+ "types": "dist/types/index.d.ts",
15
+ "style": "dist/index.css",
16
+ "type": "module",
17
+ "files": [
18
+ "dist"
19
+ ],
20
+ "peerDependencies": {
21
+ "react": "^18.0.0",
22
+ "react-dom": "^18.0.0"
23
+ },
24
+ "devDependencies": {
25
+ "@storybook/addon-docs": "^9.1.10",
26
+ "@storybook/addon-links": "^9.1.10",
27
+ "@storybook/react-vite": "^9.1.10",
28
+ "@tailwindcss/postcss": "^4.1.14",
29
+ "@trivago/prettier-plugin-sort-imports": "^5.2.2",
30
+ "@types/react": "^19.2.2",
31
+ "@types/react-dom": "^19.2.1",
32
+ "@typescript-eslint/eslint-plugin": "^8.45.0",
33
+ "@typescript-eslint/parser": "^8.45.0",
34
+ "@vitejs/plugin-react": "^5.0.4",
35
+ "autoprefixer": "^10.4.21",
36
+ "clsx": "^2.1.1",
37
+ "concurrently": "^9.2.1",
38
+ "eslint": "^9.36.0",
39
+ "eslint-plugin-react": "^7.37.5",
40
+ "eslint-plugin-storybook": "^9.1.10",
41
+ "i18next": "^25.6.0",
42
+ "install": "^0.13.0",
43
+ "postcss": "^8.4.49",
44
+ "prettier": "^3.6.2",
45
+ "prettier-plugin-tailwindcss": "^0.6.14",
46
+ "react": "^19.2.0",
47
+ "react-docgen-typescript": "^2.4.0",
48
+ "react-dom": "^19.2.0",
49
+ "react-i18next": "^16.0.1",
50
+ "storybook": "^9.1.10",
51
+ "tailwindcss": "^4.1.14",
52
+ "typescript": "^5.7.3",
53
+ "vite": "^6.0.6",
54
+ "vite-plugin-dts": "^4.5.4",
55
+ "vite-plugin-svgr": "^4.5.0"
56
+ },
57
+ "keywords": [
58
+ "design-system",
59
+ "react",
60
+ "typescript",
61
+ "tailwind"
62
+ ],
63
+ "dependencies": {
64
+ "http-server": "^14.1.1"
65
+ },
66
+ "scripts": {
67
+ "dev": "vite",
68
+ "build": "vite build",
69
+ "build:with-assets": "vite build && pnpm run copy-assets",
70
+ "copy-assets": "mkdir -p dist/public/assets && cp -r src/assets/* dist/public/assets/ && cp -r dist/public/assets/* ../public/design-system/",
71
+ "storybook": "storybook dev -p 6006",
72
+ "build-storybook": "storybook build",
73
+ "typecheck": "tsc --noEmit",
74
+ "lint": "eslint src --ext .ts,.tsx",
75
+ "lint:fix": "eslint src --ext .ts,.tsx --fix",
76
+ "format": "prettier --write './**/*.{js,jsx,ts,tsx,css,md,html}' --config ./.prettierrc.json",
77
+ "format:check": "prettier --check './**/*.{js,jsx,ts,tsx,css,md,html}' --config ./.prettierrc.json",
78
+ "heroku-postbuild": "pnpm run build-storybook",
79
+ "start": "npx http-server storybook-static -p $PORT"
80
+ }
81
+ }