@mythicalos/react-ui 0.1.0 → 0.1.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.
- package/package.json +24 -20
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mythicalos/react-ui",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"description": "mythicalOS thin React bindings over @mythicalos/ui-core — Button, Input/Toggle/Checkbox, MaskedSecretInput, EmptyState, ConfirmDialog/Scrim, Toast/ToastProvider, Chip, Card, Avatar, StatusLine, SearchInput, Banner, Gauge, and the usePoll/useInterval hooks. Render + framework wiring only — every class string, poll-scheduling math, glyph map, and text composition is derived by @mythicalos/ui-core so this binding and its Preact sibling can never drift. Apache-2.0.",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"type": "module",
|
|
@@ -20,7 +20,11 @@
|
|
|
20
20
|
"default": "./dist/index.js"
|
|
21
21
|
}
|
|
22
22
|
},
|
|
23
|
-
"files": [
|
|
23
|
+
"files": [
|
|
24
|
+
"dist",
|
|
25
|
+
"README.md",
|
|
26
|
+
"NOTICE"
|
|
27
|
+
],
|
|
24
28
|
"peerDependencies": {
|
|
25
29
|
"react": "^18.2.0 || ^19",
|
|
26
30
|
"react-dom": "^18.2.0 || ^19",
|
|
@@ -28,23 +32,23 @@
|
|
|
28
32
|
},
|
|
29
33
|
"peerDependenciesMeta": {
|
|
30
34
|
"@mythicalos/tokens": {
|
|
31
|
-
|
|
35
|
+
"optional": true
|
|
36
|
+
}
|
|
37
|
+
},
|
|
38
|
+
"dependencies": {
|
|
39
|
+
"@mythicalos/ui-core": "^0.1.1"
|
|
40
|
+
},
|
|
41
|
+
"scripts": {
|
|
42
|
+
"build": "tsc -p tsconfig.build.json",
|
|
43
|
+
"typecheck": "tsc --noEmit",
|
|
44
|
+
"test": "bun test",
|
|
45
|
+
"prepublishOnly": "bun run build && bun test && bun run typecheck"
|
|
46
|
+
},
|
|
47
|
+
"devDependencies": {
|
|
48
|
+
"react": "^19.2.8",
|
|
49
|
+
"react-dom": "^19.2.8",
|
|
50
|
+
"@types/react": "^19",
|
|
51
|
+
"@types/react-dom": "^19",
|
|
52
|
+
"typescript": "^5"
|
|
32
53
|
}
|
|
33
|
-
},
|
|
34
|
-
"dependencies": {
|
|
35
|
-
"@mythicalos/ui-core": "^0.1.0"
|
|
36
|
-
},
|
|
37
|
-
"scripts": {
|
|
38
|
-
"build": "tsc -p tsconfig.build.json",
|
|
39
|
-
"typecheck": "tsc --noEmit",
|
|
40
|
-
"test": "bun test",
|
|
41
|
-
"prepublishOnly": "bun run build && bun test && bun run typecheck"
|
|
42
|
-
},
|
|
43
|
-
"devDependencies": {
|
|
44
|
-
"react": "^19.2.8",
|
|
45
|
-
"react-dom": "^19.2.8",
|
|
46
|
-
"@types/react": "^19",
|
|
47
|
-
"@types/react-dom": "^19",
|
|
48
|
-
"typescript": "^5"
|
|
49
|
-
}
|
|
50
54
|
}
|