@terrazzo/plugin-css
Version:
Convert DTCG design tokens JSON into CSS variables for use in any web application or native app with webview.
49 lines • 1.28 kB
JSON
{
"name": "@terrazzo/plugin-css",
"version": "0.8.1",
"description": "Convert DTCG design tokens JSON into CSS variables for use in any web application or native app with webview.",
"license": "MIT",
"type": "module",
"author": {
"name": "Drew Powers",
"email": "drew@pow.rs"
},
"keywords": [
"design tokens",
"design system",
"dtcg",
"w3c",
"css"
],
"main": "./dist/index.js",
"exports": {
".": "./dist/index.js",
"./package.json": "./package.json"
},
"homepage": "https://terrazzo.app/docs/cli/integrations/css",
"repository": {
"type": "git",
"url": "https://github.com/terrazzoapp/terrazzo.git",
"directory": "./packages/plugin-css/"
},
"peerDependencies": {
"@terrazzo/cli": "^0.8.0"
},
"dependencies": {
"@terrazzo/token-tools": "^0.8.1"
},
"devDependencies": {
"dtcg-examples": "^0.3.3",
"@terrazzo/cli": "^0.8.1",
"@terrazzo/parser": "^0.8.1"
},
"scripts": {
"build": "rolldown -c && attw --profile esm-only --pack .",
"dev": "rolldown -c -w",
"format": "biome check --fix --unsafe .",
"lint": "pnpm --filter @terrazzo/plugin-css run \"/^lint:(js|ts)/\"",
"lint:js": "biome check .",
"lint:ts": "tsc --noEmit",
"test": "vitest run"
}
}