@tutti-os/ui-system 0.0.1

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 (49) hide show
  1. package/AGENTS.md +146 -0
  2. package/LICENSE +202 -0
  3. package/README.md +97 -0
  4. package/agent/install-skill.mjs +241 -0
  5. package/agent/nextop-ui-system/SKILL.md +227 -0
  6. package/agent/nextop-ui-system/references/extract-base-component.md +87 -0
  7. package/agent/nextop-ui-system/references/maintain-inventory.md +45 -0
  8. package/agent/nextop-ui-system/references/promote-business-component.md +316 -0
  9. package/agent/nextop-ui-system/references/use-existing-component.md +37 -0
  10. package/agent/nextop-ui-system/scripts/create-business-preview.mjs +658 -0
  11. package/dist/chunk-2AUYRRDG.js +3078 -0
  12. package/dist/chunk-2AUYRRDG.js.map +1 -0
  13. package/dist/chunk-DGPY4WP3.js +11 -0
  14. package/dist/chunk-DGPY4WP3.js.map +1 -0
  15. package/dist/chunk-GX3U3V36.js +70 -0
  16. package/dist/chunk-GX3U3V36.js.map +1 -0
  17. package/dist/chunk-UTUVPSKL.js +873 -0
  18. package/dist/chunk-UTUVPSKL.js.map +1 -0
  19. package/dist/chunk-XHA7R2WC.js +292 -0
  20. package/dist/chunk-XHA7R2WC.js.map +1 -0
  21. package/dist/components/index.d.ts +360 -0
  22. package/dist/components/index.js +221 -0
  23. package/dist/components/index.js.map +1 -0
  24. package/dist/date-format.d.ts +6 -0
  25. package/dist/date-format.js +11 -0
  26. package/dist/date-format.js.map +1 -0
  27. package/dist/dev-vite.d.ts +9 -0
  28. package/dist/dev-vite.js +583 -0
  29. package/dist/dev-vite.js.map +1 -0
  30. package/dist/icons/index.d.ts +112 -0
  31. package/dist/icons/index.js +191 -0
  32. package/dist/icons/index.js.map +1 -0
  33. package/dist/index.d.ts +13 -0
  34. package/dist/index.js +419 -0
  35. package/dist/index.js.map +1 -0
  36. package/dist/metadata/components.json +2819 -0
  37. package/dist/metadata/components.schema.json +110 -0
  38. package/dist/metadata/index.d.ts +27 -0
  39. package/dist/metadata/index.js +2827 -0
  40. package/dist/metadata/index.js.map +1 -0
  41. package/dist/styles/base.css +170 -0
  42. package/dist/styles/index.css +4 -0
  43. package/dist/styles/semantic.css +50 -0
  44. package/dist/styles/theme.css +366 -0
  45. package/dist/utils.d.ts +5 -0
  46. package/dist/utils.js +7 -0
  47. package/dist/utils.js.map +1 -0
  48. package/package.json +118 -0
  49. package/ui-system.md +671 -0
package/package.json ADDED
@@ -0,0 +1,118 @@
1
+ {
2
+ "name": "@tutti-os/ui-system",
3
+ "version": "0.0.1",
4
+ "private": false,
5
+ "type": "module",
6
+ "types": "./dist/index.d.ts",
7
+ "sideEffects": [
8
+ "./src/styles/*.css",
9
+ "./dist/styles/*.css",
10
+ "./dist/styles.css"
11
+ ],
12
+ "bin": {
13
+ "nextop-ui-system-install-skill": "./agent/install-skill.mjs"
14
+ },
15
+ "imports": {
16
+ "#components/*": "./src/components/*/index.tsx",
17
+ "#icons/*": "./src/icons/*.tsx",
18
+ "#lib/*": "./src/lib/*.ts"
19
+ },
20
+ "exports": {
21
+ ".": {
22
+ "types": "./dist/index.d.ts",
23
+ "import": "./dist/index.js"
24
+ },
25
+ "./components": {
26
+ "types": "./dist/components/index.d.ts",
27
+ "import": "./dist/components/index.js"
28
+ },
29
+ "./date-format": {
30
+ "types": "./dist/date-format.d.ts",
31
+ "import": "./dist/date-format.js"
32
+ },
33
+ "./dev-vite": {
34
+ "types": "./dist/dev-vite.d.ts",
35
+ "import": "./dist/dev-vite.js"
36
+ },
37
+ "./icons": {
38
+ "types": "./dist/icons/index.d.ts",
39
+ "import": "./dist/icons/index.js"
40
+ },
41
+ "./metadata": {
42
+ "types": "./dist/metadata/index.d.ts",
43
+ "import": "./dist/metadata/index.js"
44
+ },
45
+ "./styles.css": "./dist/styles/index.css",
46
+ "./utils": {
47
+ "types": "./dist/utils.d.ts",
48
+ "import": "./dist/utils.js"
49
+ }
50
+ },
51
+ "files": [
52
+ "dist",
53
+ "agent",
54
+ "AGENTS.md",
55
+ "ui-system.md",
56
+ "README.md"
57
+ ],
58
+ "repository": {
59
+ "type": "git",
60
+ "url": "git+https://github.com/tutti-os/tutti.git",
61
+ "directory": "packages/ui/system"
62
+ },
63
+ "dependencies": {
64
+ "@fontsource-variable/lexend": "^5.2.11",
65
+ "class-variance-authority": "^0.7.1",
66
+ "clsx": "^2.1.1",
67
+ "radix-ui": "^1.4.2",
68
+ "react-resizable-panels": "^4.11.1",
69
+ "sonner": "^2.0.7",
70
+ "tailwind-merge": "^3.3.0",
71
+ "tw-animate-css": "^1.3.1",
72
+ "vaul": "^1.1.2",
73
+ "ws": "^8.20.1"
74
+ },
75
+ "devDependencies": {
76
+ "@types/react": "^19.1.6",
77
+ "@types/react-dom": "^19.1.5",
78
+ "@types/ws": "^8.18.1",
79
+ "tsx": "^4.22.3",
80
+ "typescript": "^5.8.3",
81
+ "vite": "^6.4.2",
82
+ "@tutti-os/config-tsconfig": "0.0.0"
83
+ },
84
+ "peerDependencies": {
85
+ "react": "^19.1.0",
86
+ "react-dom": "^19.1.0"
87
+ },
88
+ "nextop": {
89
+ "tailwindSourceRoot": "src"
90
+ },
91
+ "publishConfig": {
92
+ "access": "public"
93
+ },
94
+ "scripts": {
95
+ "build": "tsup --config tsup.config.ts && node ../../../tools/scripts/copy-package-assets.mjs src/styles dist/styles src/metadata/components.json dist/metadata/components.json src/metadata/components.schema.json dist/metadata/components.schema.json",
96
+ "dev:server": "tsx src/dev-server/server.ts",
97
+ "typecheck": "tsc --noEmit -p tsconfig.json"
98
+ },
99
+ "typesVersions": {
100
+ "*": {
101
+ "components": [
102
+ "./dist/components/index.d.ts"
103
+ ],
104
+ "date-format": [
105
+ "./dist/date-format.d.ts"
106
+ ],
107
+ "icons": [
108
+ "./dist/icons/index.d.ts"
109
+ ],
110
+ "metadata": [
111
+ "./dist/metadata/index.d.ts"
112
+ ],
113
+ "utils": [
114
+ "./dist/utils.d.ts"
115
+ ]
116
+ }
117
+ }
118
+ }