@terrazzo/cli
Version:
CLI for managing design tokens using the Design Tokens Community Group (DTCG) standard and generating code for any platform via plugins.
70 lines • 1.83 kB
JSON
{
"name": "@terrazzo/cli",
"version": "0.10.1",
"description": "CLI for managing design tokens using the Design Tokens Community Group (DTCG) standard and generating code for any platform via plugins.",
"license": "MIT",
"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": {
".": "./dist/index.js",
"./package.json": "./package.json"
},
"homepage": "https://terrazzo.app/docs/cli",
"repository": {
"type": "git",
"url": "https://github.com/terrazzoapp/terrazzo.git",
"directory": "./packages/cli/"
},
"bin": {
"tz": "bin/cli.js",
"terrazzo": "bin/cli.js"
},
"dependencies": {
"@clack/prompts": "^0.9.1",
"@hono/node-server": "^1.14.3",
"@humanwhocodes/momoa": "^3.3.8",
"@types/escodegen": "^0.0.10",
"chokidar": "^3.6.0",
"detect-package-manager": "^3.0.2",
"dotenv": "^16.5.0",
"escodegen": "^2.1.0",
"merge-anything": "^5.1.7",
"meriyah": "^6.0.6",
"mime": "^4.0.7",
"picocolors": "^1.1.1",
"yaml-to-momoa": "^0.0.6",
"@terrazzo/parser": "^0.10.1",
"@terrazzo/token-tools": "^0.10.1"
},
"devDependencies": {
"@vitejs/plugin-react-swc": "^3.10.0",
"react": "19.0.0",
"react-dom": "19.0.0",
"vite": "^6.3.5"
},
"scripts": {
"build": "rolldown -c && attw --profile esm-only --pack . && vite build",
"dev": "rolldown -c -w",
"format": "biome check --fix --unsafe .",
"lint": "pnpm --filter @terrazzo/cli run \"/^lint:(js|ts)/\"",
"lint:js": "biome check .",
"lint:ts": "tsc --noEmit",
"test": "vitest run"
}
}