@terrazzo/cli
Version:
CLI for managing design tokens using the Design Tokens Community Group (DTCG) standard and generating code for any platform via plugins.
75 lines • 1.95 kB
JSON
{
"name": "@terrazzo/cli",
"version": "0.7.0",
"description": "CLI for managing design tokens using the Design Tokens Community Group (DTCG) standard and generating code for any platform via plugins.",
"type": "module",
"author": {
"name": "Drew Powers",
"email": "drew@pow.rs"
},
"keywords": [
"design tokens",
"dtcg",
"cli",
"w3c",
"design system",
"typescript",
"sass",
"css",
"style tokens",
"style system"
],
"main": "./dist/index.js",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./README.md": "./README.md",
"./package.json": "./package.json"
},
"homepage": "https://terrazzo.app/docs/cli",
"repository": {
"type": "git",
"url": "https://github.com/terrazzoapp/terrazzo.git",
"directory": "./packages/cli/"
},
"license": "MIT",
"bin": {
"tz": "bin/cli.js",
"terrazzo": "bin/cli.js"
},
"dependencies": {
"@clack/prompts": "^0.9.1",
"@hono/node-server": "^1.14.0",
"@humanwhocodes/momoa": "^3.3.8",
"@types/escodegen": "^0.0.10",
"chokidar": "^3.6.0",
"detect-package-manager": "^3.0.2",
"dotenv": "^16.4.7",
"escodegen": "^2.1.0",
"merge-anything": "^5.1.7",
"meriyah": "^6.0.5",
"mime": "^4.0.6",
"picocolors": "^1.1.1",
"yaml-to-momoa": "^0.0.3",
"@terrazzo/parser": "^0.7.0",
"@terrazzo/token-tools": "^0.7.0"
},
"devDependencies": {
"@vitejs/plugin-react-swc": "^3.8.1",
"react": "19.0.0",
"react-dom": "19.0.0",
"vite": "^6.2.3"
},
"scripts": {
"build": "tsc -p tsconfig.build.json && pnpm run build:lab",
"build:lab": "vite build",
"dev": "tsc -p tsconfig.build.json -w",
"format": "biome check --fix --unsafe .",
"lint": "biome check .",
"test": "pnpm --filter @terrazzo/cli run \"/^test:.*/\"",
"test:js": "vitest run",
"test:ts": "tsc --noEmit"
}
}