@medway-ui/core 0.1.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/package.json ADDED
@@ -0,0 +1,90 @@
1
+ {
2
+ "name": "@medway-ui/core",
3
+ "version": "0.1.0",
4
+ "private": false,
5
+ "description": "Biblioteca de componentes e assets para o sistema Medway",
6
+ "author": "Alekcarvalho",
7
+ "license": "MIT",
8
+ "main": "dist/index.js",
9
+ "module": "dist/index.mjs",
10
+ "types": "dist/index.d.ts",
11
+ "files": [
12
+ "dist",
13
+ "README.md"
14
+ ],
15
+ "sideEffects": false,
16
+ "scripts": {
17
+ "dev": "next dev",
18
+ "build": "next build",
19
+ "start": "next start",
20
+ "lint": "next lint",
21
+ "format": "prettier --write \"**/*.{js,jsx,ts,tsx,json,md}\"",
22
+ "format:check": "prettier --check \"**/*.{js,jsx,ts,tsx,json,md}\"",
23
+ "postbuild": "pagefind --site .next/server/app --output-path public/_pagefind",
24
+ "prepare": "husky install",
25
+ "build:lib": "tsup",
26
+ "release": "npm publish --access public"
27
+ },
28
+ "dependencies": {
29
+ "@medway-ui/icons": "^1.0.2",
30
+ "@radix-ui/react-avatar": "^1.1.10",
31
+ "@radix-ui/react-dialog": "^1.1.13",
32
+ "@radix-ui/react-separator": "^1.1.6",
33
+ "@radix-ui/react-slot": "^1.2.2",
34
+ "@radix-ui/react-tooltip": "^1.2.6",
35
+ "class-variance-authority": "^0.7.1",
36
+ "clsx": "^2.1.1",
37
+ "lucide-react": "^0.510.0"
38
+ },
39
+ "peerDependencies": {
40
+ "next": ">=15.0.0",
41
+ "react": ">=18.0.0",
42
+ "react-dom": ">=18.0.0",
43
+ "tailwindcss": ">=4.0.0"
44
+ },
45
+ "devDependencies": {
46
+ "@commitlint/cli": "^19.8.1",
47
+ "@commitlint/config-conventional": "^19.8.1",
48
+ "@eslint/eslintrc": "^3",
49
+ "@tailwindcss/postcss": "^4",
50
+ "@types/node": "^20",
51
+ "@types/react": "^19",
52
+ "@types/react-dom": "^19",
53
+ "@types/svg-parser": "^2.0.6",
54
+ "@typescript-eslint/eslint-plugin": "^8.31.1",
55
+ "@typescript-eslint/parser": "^8.31.1",
56
+ "eslint": "^9",
57
+ "eslint-config-next": "15.3.1",
58
+ "eslint-config-prettier": "^10.1.2",
59
+ "eslint-plugin-mdx": "^3.4.1",
60
+ "husky": "^9.1.7",
61
+ "next": "15.3.1",
62
+ "nextra": "^4.2.17",
63
+ "nextra-theme-docs": "^4.2.17",
64
+ "pagefind": "^1.3.0",
65
+ "prettier": "3.5.3",
66
+ "prettier-plugin-tailwindcss": "0.6.11",
67
+ "react": "^19.0.0",
68
+ "react-dom": "^19.0.0",
69
+ "svg-parser": "^2.0.4",
70
+ "tailwind-merge": "^3.2.0",
71
+ "tailwindcss": "^4",
72
+ "tsup": "^8.5.0",
73
+ "tw-animate-css": "^1.2.9",
74
+ "typescript": "^5"
75
+ },
76
+ "publishConfig": {
77
+ "access": "public"
78
+ },
79
+ "repository": {
80
+ "type": "git",
81
+ "url": "https://github.com/alekcarvalho/medway-ui.git"
82
+ },
83
+ "keywords": [
84
+ "react",
85
+ "components",
86
+ "ui",
87
+ "design-system",
88
+ "medway"
89
+ ]
90
+ }