@sublime-ui/library 0.1.0 → 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.
Files changed (1) hide show
  1. package/package.json +87 -53
package/package.json CHANGED
@@ -1,53 +1,87 @@
1
- {
2
- "name": "@sublime-ui/library",
3
- "version": "0.1.0",
4
- "description": "Tokens-first cross-platform design system — one theme drives MUI (web) and React Native Paper (mobile).",
5
- "keywords": ["sublime-ui", "design-system", "mui", "react-native-paper", "theme", "tokens", "components", "cross-platform", "typescript"],
6
- "homepage": "https://sublime-ui.github.io/sublime-ui/",
7
- "bugs": "https://github.com/sublime-ui/sublime-ui/issues",
8
- "repository": { "type": "git", "url": "git+https://github.com/sublime-ui/sublime-ui.git", "directory": "library" },
9
- "license": "MIT",
10
- "author": "Aaron Mkandawire",
11
- "publishConfig": { "access": "public" },
12
- "type": "module",
13
- "exports": { ".": { "types": "./dist/index.d.ts", "import": "./dist/index.js" } },
14
- "react-native": "./src/index.ts",
15
- "files": ["dist", "src"],
16
- "scripts": {
17
- "build": "tsup",
18
- "typecheck": "tsc --noEmit",
19
- "test": "vitest run --passWithNoTests",
20
- "lint": "eslint src"
21
- },
22
- "peerDependencies": {
23
- "react": ">=18",
24
- "react-native": ">=0.74",
25
- "react-native-paper": ">=5",
26
- "@mui/material": ">=6",
27
- "@emotion/react": ">=11",
28
- "@emotion/styled": ">=11"
29
- },
30
- "peerDependenciesMeta": {
31
- "react-native": { "optional": true },
32
- "react-native-paper": { "optional": true },
33
- "@mui/material": { "optional": true },
34
- "@emotion/react": { "optional": true },
35
- "@emotion/styled": { "optional": true }
36
- },
37
- "devDependencies": {
38
- "@emotion/react": "^11.13.3",
39
- "@emotion/styled": "^11.13.0",
40
- "@mui/material": "^6.1.6",
41
- "@testing-library/dom": "^10.4.0",
42
- "@testing-library/react": "^16.0.1",
43
- "@types/node": "^22",
44
- "@types/react": "^18.3.12",
45
- "jsdom": "^25.0.1",
46
- "react": "^18.3.1",
47
- "react-dom": "^18.3.1",
48
- "react-native": "^0.76.1",
49
- "react-native-paper": "^5.12.5",
50
- "react-native-safe-area-context": "^4.14.0",
51
- "react-test-renderer": "^18.3.1"
52
- }
53
- }
1
+ {
2
+ "name": "@sublime-ui/library",
3
+ "version": "0.1.2",
4
+ "description": "Tokens-first cross-platform design system — one theme drives MUI (web) and React Native Paper (mobile).",
5
+ "keywords": [
6
+ "sublime-ui",
7
+ "design-system",
8
+ "mui",
9
+ "react-native-paper",
10
+ "theme",
11
+ "tokens",
12
+ "components",
13
+ "cross-platform",
14
+ "typescript"
15
+ ],
16
+ "homepage": "https://sublime-ui.github.io/sublime-ui/",
17
+ "bugs": "https://github.com/sublime-ui/sublime-ui/issues",
18
+ "repository": {
19
+ "type": "git",
20
+ "url": "git+https://github.com/sublime-ui/sublime-ui.git",
21
+ "directory": "library"
22
+ },
23
+ "license": "MIT",
24
+ "author": "Aaron Mkandawire",
25
+ "publishConfig": {
26
+ "access": "public"
27
+ },
28
+ "type": "module",
29
+ "exports": {
30
+ ".": {
31
+ "types": "./dist/index.d.ts",
32
+ "import": "./dist/index.js"
33
+ }
34
+ },
35
+ "react-native": "./src/index.ts",
36
+ "files": [
37
+ "dist",
38
+ "src"
39
+ ],
40
+ "scripts": {
41
+ "build": "tsup",
42
+ "typecheck": "tsc --noEmit",
43
+ "test": "vitest run --passWithNoTests",
44
+ "lint": "eslint src"
45
+ },
46
+ "peerDependencies": {
47
+ "react": ">=18",
48
+ "react-native": ">=0.74",
49
+ "react-native-paper": ">=5",
50
+ "@mui/material": ">=6",
51
+ "@emotion/react": ">=11",
52
+ "@emotion/styled": ">=11"
53
+ },
54
+ "peerDependenciesMeta": {
55
+ "react-native": {
56
+ "optional": true
57
+ },
58
+ "react-native-paper": {
59
+ "optional": true
60
+ },
61
+ "@mui/material": {
62
+ "optional": true
63
+ },
64
+ "@emotion/react": {
65
+ "optional": true
66
+ },
67
+ "@emotion/styled": {
68
+ "optional": true
69
+ }
70
+ },
71
+ "devDependencies": {
72
+ "@emotion/react": "^11.13.3",
73
+ "@emotion/styled": "^11.13.0",
74
+ "@mui/material": "^6.1.6",
75
+ "@testing-library/dom": "^10.4.0",
76
+ "@testing-library/react": "^16.0.1",
77
+ "@types/node": "^22",
78
+ "@types/react": "^18.3.12",
79
+ "jsdom": "^25.0.1",
80
+ "react": "^18.3.1",
81
+ "react-dom": "^18.3.1",
82
+ "react-native": "^0.76.1",
83
+ "react-native-paper": "^5.12.5",
84
+ "react-native-safe-area-context": "^4.14.0",
85
+ "react-test-renderer": "^18.3.1"
86
+ }
87
+ }