@web-my-money/brand 1.0.0
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 +76 -0
- package/assets/logos/isologotipo-blue.svg +14 -0
- package/assets/logos/isologotipo-full.svg +25 -0
- package/assets/logos/isologotipo-white.svg +14 -0
- package/assets/logos/isotipo-blue.svg +3 -0
- package/assets/logos/isotipo-full.svg +15 -0
- package/assets/logos/isotipo-white.svg +3 -0
- package/assets/logos/logotipo-blue.svg +12 -0
- package/assets/logos/logotipo-white.svg +12 -0
- package/brand-tokens.css +60 -0
- package/brand.css +18 -0
- package/dist/index.d.mts +380 -0
- package/dist/index.d.ts +380 -0
- package/dist/index.js +606 -0
- package/dist/index.mjs +540 -0
- package/package.json +50 -0
package/package.json
ADDED
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@web-my-money/brand",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"description": "WMM brand kit — colours, gradients, typography, theme-aware 2D/3D logos, asset registry (Drive vault connections), brand-vars CSS, favicon/OG metadata. The canonical Web My Money brand slot.",
|
|
5
|
+
"main": "./dist/index.js",
|
|
6
|
+
"module": "./dist/index.mjs",
|
|
7
|
+
"types": "./dist/index.d.ts",
|
|
8
|
+
"exports": {
|
|
9
|
+
".": {
|
|
10
|
+
"types": "./dist/index.d.ts",
|
|
11
|
+
"import": "./dist/index.mjs",
|
|
12
|
+
"require": "./dist/index.js"
|
|
13
|
+
},
|
|
14
|
+
"./brand.css": "./brand.css",
|
|
15
|
+
"./brand-tokens.css": "./brand-tokens.css",
|
|
16
|
+
"./assets/*": "./assets/*"
|
|
17
|
+
},
|
|
18
|
+
"files": [
|
|
19
|
+
"dist",
|
|
20
|
+
"brand.css",
|
|
21
|
+
"brand-tokens.css",
|
|
22
|
+
"assets"
|
|
23
|
+
],
|
|
24
|
+
"sideEffects": [
|
|
25
|
+
"*.css"
|
|
26
|
+
],
|
|
27
|
+
"scripts": {
|
|
28
|
+
"gen:logos": "node scripts/gen-logos.mjs",
|
|
29
|
+
"gen:brand-colors": "node scripts/gen-brand-colors.mjs",
|
|
30
|
+
"gen:design-md": "node scripts/gen-design-md.mjs",
|
|
31
|
+
"sync:brand": "node scripts/sync-brand.mjs",
|
|
32
|
+
"push:assets": "node scripts/push-assets.mjs",
|
|
33
|
+
"build": "node scripts/gen-logos.mjs && node scripts/gen-brand-colors.mjs && tsup src/index.ts --format cjs,esm --dts",
|
|
34
|
+
"typecheck": "tsc --noEmit"
|
|
35
|
+
},
|
|
36
|
+
"peerDependencies": {
|
|
37
|
+
"react": ">=18",
|
|
38
|
+
"react-dom": ">=18"
|
|
39
|
+
},
|
|
40
|
+
"devDependencies": {
|
|
41
|
+
"@types/react": "^19.0.0",
|
|
42
|
+
"tsup": "^8.4.0",
|
|
43
|
+
"typescript": "^5.8.0"
|
|
44
|
+
},
|
|
45
|
+
"publishConfig": {
|
|
46
|
+
"registry": "https://registry.npmjs.org",
|
|
47
|
+
"access": "public"
|
|
48
|
+
},
|
|
49
|
+
"license": "UNLICENSED"
|
|
50
|
+
}
|