@gv-tech/design-tokens 1.1.0 → 2.7.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.
Files changed (2) hide show
  1. package/README.md +20 -0
  2. package/package.json +8 -2
package/README.md ADDED
@@ -0,0 +1,20 @@
1
+ # @gv-tech/design-tokens
2
+
3
+ Shared design tokens for the GV Tech design system, including palette, theme, spacing, typography, and shadows.
4
+
5
+ ## Installation
6
+
7
+ ```bash
8
+ yarn add @gv-tech/design-tokens
9
+ ```
10
+
11
+ ## Features
12
+
13
+ - **Palette**: Raw color values used across the system.
14
+ - **Theme**: Semantic color tokens for light and dark modes.
15
+ - **Typography**: Responsive font sizes, weights, and line heights.
16
+ - **Spacing/Shadows**: Standardized layout and elevation tokens.
17
+
18
+ ---
19
+
20
+ This is a sub-package of the [GV Tech Design System](https://github.com/Garcia-Ventures/gvtech-design).
package/package.json CHANGED
@@ -1,7 +1,12 @@
1
1
  {
2
2
  "name": "@gv-tech/design-tokens",
3
- "version": "1.1.0",
3
+ "version": "2.7.1",
4
4
  "description": "Shared design tokens for the GV Tech design system — palette, theme, spacing, typography, shadows",
5
+ "repository": {
6
+ "type": "git",
7
+ "url": "https://github.com/Garcia-Ventures/gvtech-design.git",
8
+ "directory": "packages/design-tokens"
9
+ },
5
10
  "license": "MIT",
6
11
  "exports": {
7
12
  ".": {
@@ -21,6 +26,7 @@
21
26
  "typecheck": "npx tsc --noEmit"
22
27
  },
23
28
  "publishConfig": {
24
- "access": "public"
29
+ "access": "public",
30
+ "provenance": true
25
31
  }
26
32
  }