@plumeria/core 0.18.0 → 0.18.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.
- package/README.md +11 -0
- package/package.json +9 -1
package/README.md
CHANGED
|
@@ -97,6 +97,17 @@ The [@plumeria/eslint-plugin](https://www.npmjs.com/package/@plumeria/eslint-plu
|
|
|
97
97
|
|
|
98
98
|
It plugin provides autocomplete and validation support.
|
|
99
99
|
|
|
100
|
+
## Acknowledgement
|
|
101
|
+
|
|
102
|
+
Plumeria is made possible thanks to the valuable inspirations from the following projects:
|
|
103
|
+
|
|
104
|
+
- [Linaria](https://linaria.dev/)
|
|
105
|
+
- [React Native](https://reactnative.dev/docs/stylesheet)
|
|
106
|
+
- [React Native for Web](https://necolas.github.io/react-native-web/)
|
|
107
|
+
- [StyleX](https://stylexjs.com/)
|
|
108
|
+
- [Tailwind CSS](https://tailwindcss.com/)
|
|
109
|
+
- [Uno CSS](https://unocss.dev/)
|
|
110
|
+
|
|
100
111
|
## License
|
|
101
112
|
|
|
102
113
|
Plumeria is [MIT licensed](https://github.com/zss-in-js/plumeria/blob/main/LICENSE).
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@plumeria/core",
|
|
3
|
-
"version": "0.18.
|
|
3
|
+
"version": "0.18.2",
|
|
4
4
|
"description": "A library for scalable and optimized styling.",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -8,6 +8,14 @@
|
|
|
8
8
|
"directory": "packages/core"
|
|
9
9
|
},
|
|
10
10
|
"license": "MIT",
|
|
11
|
+
"keywords": [
|
|
12
|
+
"plumeria",
|
|
13
|
+
"atomic-css",
|
|
14
|
+
"css-in-js",
|
|
15
|
+
"css",
|
|
16
|
+
"stylex",
|
|
17
|
+
"react-native-web"
|
|
18
|
+
],
|
|
11
19
|
"sideEffects": false,
|
|
12
20
|
"exports": {
|
|
13
21
|
"./package.json": "./package.json",
|