@denisluyo/theme-english-product 0.1.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/package.json ADDED
@@ -0,0 +1,30 @@
1
+ {
2
+ "name": "@denisluyo/theme-english-product",
3
+ "version": "0.1.0",
4
+ "description": "Tokens y foundations del tema English Product para el Design System de Denis Luyo.",
5
+ "license": "MIT",
6
+ "type": "module",
7
+ "files": ["dist", "README.md", "LICENSE"],
8
+ "keywords": ["design-system", "design-tokens", "css", "theme"],
9
+ "publishConfig": {
10
+ "access": "public",
11
+ "registry": "https://registry.npmjs.org/"
12
+ },
13
+ "exports": {
14
+ ".": {
15
+ "types": "./dist/tokens.d.ts",
16
+ "import": "./dist/tokens.js"
17
+ },
18
+ "./css": "./dist/css/tokens.css",
19
+ "./json": "./dist/tokens.json"
20
+ },
21
+ "scripts": {
22
+ "normalize": "node scripts/normalize-source-tokens.mjs",
23
+ "build": "pnpm normalize && node scripts/build-tokens.mjs",
24
+ "test": "pnpm normalize && node scripts/validate-tokens.mjs",
25
+ "prepublishOnly": "pnpm test && pnpm build"
26
+ },
27
+ "engines": {
28
+ "node": ">=18"
29
+ }
30
+ }