@astryxdesign/theme-butter 0.0.0-bootstrap.0 → 0.0.15
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/LICENSE +21 -0
- package/README.md +55 -1
- package/dist/butter.d.ts +11 -0
- package/dist/butter.js +198 -0
- package/dist/butter.variants.d.ts +112 -0
- package/dist/butterTheme.d.ts +344 -0
- package/dist/butterTheme.d.ts.map +1 -0
- package/dist/chunk-KRFM4EWN.mjs +66 -0
- package/dist/icons.d.ts +3 -0
- package/dist/icons.d.ts.map +1 -0
- package/dist/icons.js +63 -0
- package/dist/icons.mjs +6 -0
- package/dist/source.d.ts +3 -0
- package/dist/source.d.ts.map +1 -0
- package/dist/source.js +918 -0
- package/dist/source.mjs +855 -0
- package/dist/theme.css +773 -0
- package/package.json +56 -5
- package/src/butterTheme.ts +916 -0
- package/src/icons.tsx +77 -0
- package/src/source.ts +4 -0
package/package.json
CHANGED
|
@@ -1,11 +1,62 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@astryxdesign/theme-butter",
|
|
3
|
-
"version": "0.0.
|
|
4
|
-
"
|
|
5
|
-
"
|
|
3
|
+
"version": "0.0.15",
|
|
4
|
+
"displayName": "Butter Theme",
|
|
5
|
+
"private": false,
|
|
6
|
+
"description": "Warm, creamy yellows with a friendly blue accent. Playful enough for consumer surfaces, soft enough to stay readable.",
|
|
7
|
+
"author": "Meta Open Source",
|
|
6
8
|
"license": "MIT",
|
|
9
|
+
"homepage": "https://github.com/facebook/astryx#readme",
|
|
7
10
|
"repository": {
|
|
8
11
|
"type": "git",
|
|
9
|
-
"url": "git+https://github.com/facebook/astryx.git"
|
|
12
|
+
"url": "git+https://github.com/facebook/astryx.git",
|
|
13
|
+
"directory": "packages/themes/butter"
|
|
14
|
+
},
|
|
15
|
+
"bugs": {
|
|
16
|
+
"url": "https://github.com/facebook/astryx/issues"
|
|
17
|
+
},
|
|
18
|
+
"keywords": [
|
|
19
|
+
"xds",
|
|
20
|
+
"theme",
|
|
21
|
+
"design-system",
|
|
22
|
+
"lucide",
|
|
23
|
+
"design-tokens"
|
|
24
|
+
],
|
|
25
|
+
"sideEffects": false,
|
|
26
|
+
"main": "./dist/source.js",
|
|
27
|
+
"types": "./dist/source.d.ts",
|
|
28
|
+
"exports": {
|
|
29
|
+
".": {
|
|
30
|
+
"types": "./dist/source.d.ts",
|
|
31
|
+
"import": "./dist/source.mjs",
|
|
32
|
+
"require": "./dist/source.js"
|
|
33
|
+
},
|
|
34
|
+
"./built": {
|
|
35
|
+
"types": "./dist/butter.d.ts",
|
|
36
|
+
"import": "./dist/butter.js",
|
|
37
|
+
"require": "./dist/butter.js"
|
|
38
|
+
},
|
|
39
|
+
"./theme.css": {
|
|
40
|
+
"types": "./theme.css.d.ts",
|
|
41
|
+
"default": "./dist/theme.css"
|
|
42
|
+
}
|
|
43
|
+
},
|
|
44
|
+
"files": [
|
|
45
|
+
"dist",
|
|
46
|
+
"src"
|
|
47
|
+
],
|
|
48
|
+
"dependencies": {
|
|
49
|
+
"lucide-react": "^1.18.0"
|
|
50
|
+
},
|
|
51
|
+
"peerDependencies": {
|
|
52
|
+
"@astryxdesign/core": "0.0.15",
|
|
53
|
+
"react": ">=19"
|
|
54
|
+
},
|
|
55
|
+
"devDependencies": {
|
|
56
|
+
"@astryxdesign/cli": "0.0.15"
|
|
57
|
+
},
|
|
58
|
+
"module": "./dist/source.mjs",
|
|
59
|
+
"scripts": {
|
|
60
|
+
"build": "astryx theme build src/butterTheme.ts -o dist/theme.css && tsup && tsc --project tsconfig.build.json"
|
|
10
61
|
}
|
|
11
|
-
}
|
|
62
|
+
}
|