@2urgseui/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,129 @@
1
+ {
2
+ "name": "@2urgseui/core",
3
+ "version": "0.1.0",
4
+ "description": "2URGSE Shared UI component library",
5
+ "license": "UNLICENSED",
6
+ "main": "./dist/index.cjs",
7
+ "module": "./dist/index.js",
8
+ "types": "./dist/index.d.ts",
9
+ "exports": {
10
+ ".": {
11
+ "types": "./dist/index.d.ts",
12
+ "import": "./dist/index.js",
13
+ "require": "./dist/index.cjs"
14
+ },
15
+ "./tokens": {
16
+ "types": "./dist/tokens/index.d.ts",
17
+ "import": "./dist/tokens/index.js",
18
+ "require": "./dist/tokens/index.cjs"
19
+ },
20
+ "./styles": "./dist/styles.css"
21
+ },
22
+ "files": [
23
+ "dist"
24
+ ],
25
+ "workspaces": [
26
+ "apps/*"
27
+ ],
28
+ "scripts": {
29
+ "fix:esbuild": "node node_modules/esbuild/install.js",
30
+ "build": "tsup source/index.ts source/tokens/index.ts --format esm,cjs --dts --external react --external react-dom --external tailwindcss && node scripts/generate-css.mjs && npx tailwindcss -c tailwind.build.config.ts -i source/styles/entry.css -o dist/styles.css --minify",
31
+ "dev": "tsup source/index.ts source/tokens/index.ts --format esm,cjs --dts --watch --external react --external react-dom --external tailwindcss",
32
+ "pack:build": "mkdir -p build && npm pack --pack-destination ./build",
33
+ "prepare": "npm run fix:esbuild && npm run build",
34
+ "playground": "npm run dev --prefix apps/playground",
35
+ "storybook": "npm run storybook --prefix apps/storybook",
36
+ "build-storybook": "npm run build-storybook --prefix apps/storybook",
37
+ "test": "vitest run",
38
+ "test:watch": "vitest",
39
+ "lint": "eslint source"
40
+ },
41
+ "peerDependencies": {
42
+ "lucide-react": "^1.8.0",
43
+ "react": "^18.0.0",
44
+ "react-dom": "^18.0.0"
45
+ },
46
+ "dependencies": {
47
+ "@radix-ui/react-accordion": "^1.2.12",
48
+ "@radix-ui/react-alert-dialog": "^1.1.15",
49
+ "@radix-ui/react-aspect-ratio": "^1.1.8",
50
+ "@radix-ui/react-avatar": "^1.1.11",
51
+ "@radix-ui/react-checkbox": "^1.3.3",
52
+ "@radix-ui/react-collapsible": "^1.1.11",
53
+ "@radix-ui/react-dialog": "^1.1.14",
54
+ "@radix-ui/react-dropdown-menu": "^2.1.16",
55
+ "@radix-ui/react-label": "^2.1.8",
56
+ "@radix-ui/react-popover": "^1.1.15",
57
+ "@radix-ui/react-progress": "^1.1.8",
58
+ "@radix-ui/react-radio-group": "^1.3.8",
59
+ "@radix-ui/react-scroll-area": "^1.2.10",
60
+ "@radix-ui/react-select": "^2.2.5",
61
+ "@radix-ui/react-separator": "^1.1.7",
62
+ "@radix-ui/react-slider": "^1.3.6",
63
+ "@radix-ui/react-slot": "^1.2.3",
64
+ "@radix-ui/react-switch": "^1.2.6",
65
+ "@radix-ui/react-tabs": "^1.1.13",
66
+ "@radix-ui/react-toast": "^1.2.15",
67
+ "@radix-ui/react-tooltip": "^1.2.8",
68
+ "@tiptap/extension-image": "^3.22.4",
69
+ "@tiptap/extension-link": "^3.22.4",
70
+ "@tiptap/extension-mention": "^3.22.4",
71
+ "@tiptap/extension-placeholder": "^3.22.4",
72
+ "@tiptap/react": "^3.22.4",
73
+ "@tiptap/starter-kit": "^3.22.4",
74
+ "@tiptap/suggestion": "^3.22.4",
75
+ "class-variance-authority": "^0.7.0",
76
+ "clsx": "^2.1.0",
77
+ "dompurify": "^3.4.2",
78
+ "input-otp": "^1.4.2",
79
+ "react-day-picker": "^9.14.0",
80
+ "react-hook-form": "^7.74.0",
81
+ "tailwind-merge": "^2.2.1",
82
+ "tailwindcss-animate": "^1.0.7",
83
+ "vaul": "^1.1.2"
84
+ },
85
+ "devDependencies": {
86
+ "@eslint/js": "^9.0.0",
87
+ "@testing-library/react": "^14.2.1",
88
+ "@types/react": "^18.2.57",
89
+ "@types/react-dom": "^18.2.19",
90
+ "@typescript-eslint/eslint-plugin": "^8.0.0",
91
+ "@typescript-eslint/parser": "^8.0.0",
92
+ "@vitejs/plugin-react": "^5.0.0",
93
+ "autoprefixer": "^10.4.17",
94
+ "esbuild": "0.27.7",
95
+ "eslint": "^9.0.0",
96
+ "eslint-plugin-react": "^7.37.0",
97
+ "jsdom": "^24.0.0",
98
+ "postcss": "^8.4.35",
99
+ "tailwindcss": "^3.4.1",
100
+ "tsup": "^8.0.2",
101
+ "typescript": "^5.3.3",
102
+ "vite": "^6.4.2",
103
+ "vitest": "^3.0.0"
104
+ },
105
+ "type": "module",
106
+ "sideEffects": [
107
+ "*.css",
108
+ "./dist/index.js",
109
+ "./dist/index.cjs"
110
+ ],
111
+ "engines": {
112
+ "node": ">=20"
113
+ },
114
+ "repository": {
115
+ "type": "git",
116
+ "url": "https://github.com/2urgseui/core.git"
117
+ },
118
+ "publishConfig": {
119
+
120
+ "access": "public",
121
+ "registry": "https://registry.npmjs.org"
122
+ },
123
+ "overrides": {
124
+ "esbuild": "0.27.7",
125
+ "glob": "^11.0.0",
126
+ "rimraf": "^5.0.10",
127
+ "tar": "^7.5.11"
128
+ }
129
+ }