@tokis/tokens 1.2.2 → 1.3.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.
Files changed (2) hide show
  1. package/README.md +1 -1
  2. package/package.json +6 -3
package/README.md CHANGED
@@ -47,7 +47,7 @@ const css = generateCSSVars(lightTheme);
47
47
 
48
48
  ## Documentation
49
49
 
50
- Visit [tokis.dev](https://tokis.dev/docs/theming) for the theming and token guide.
50
+ Visit [Tokis Documentation](https://prerakmathur20.github.io/TokisWebsite/) for the theming and token guide.
51
51
 
52
52
  ## License
53
53
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tokis/tokens",
3
- "version": "1.2.2",
3
+ "version": "1.3.0",
4
4
  "description": "Design token engine for Tokis — color primitives, semantic scales, spacing, typography, shadows, motion, and CSS variable generation.",
5
5
  "type": "module",
6
6
  "main": "./dist/cjs/index.js",
@@ -8,9 +8,9 @@
8
8
  "types": "./dist/index.d.ts",
9
9
  "exports": {
10
10
  ".": {
11
- "require": "./dist/cjs/index.js",
11
+ "types": "./dist/index.d.ts",
12
12
  "import": "./dist/index.js",
13
- "types": "./dist/index.d.ts"
13
+ "require": "./dist/cjs/index.js"
14
14
  },
15
15
  "./css": "./dist/css/index.css"
16
16
  },
@@ -63,6 +63,9 @@
63
63
  "optional": true
64
64
  }
65
65
  },
66
+ "engines": {
67
+ "node": ">=18.0.0"
68
+ },
66
69
  "publishConfig": {
67
70
  "access": "public",
68
71
  "registry": "https://registry.npmjs.org/"