diff --git a/README.md b/README.md index f2a69a6..e6ee41a 100644 --- a/README.md +++ b/README.md @@ -40,7 +40,7 @@ Which will produce:
- +
``` @@ -48,7 +48,7 @@ Which will produce: /* With ct */ --colors-red-500: #ef4444; -/* With component-level tokens in semanticToken */ +/* With Panda's semanticTokens */ --colors-alert-background: var(--colors-red-500); .d_flex { @@ -60,7 +60,7 @@ Which will produce: background: var(--colors-red-500); } -/* With component-level tokens in semanticToken */ +/* With Panda's semanticTokens */ .bg_alert\.background { background: var(--colors-alert-background); } @@ -70,7 +70,7 @@ Which will produce: ### Supported Syntax -This plugin supports aliasing to Panda's object syntax via a `value` key, just as you would define styles with conditions in Panda's theme. +This plugin supports aliasing to Panda's object syntax via a `value` key, just as you would define semantic tokens in Panda's theme. ```ts export default defineConfig({ diff --git a/package.json b/package.json index 489eb0b..80cdab2 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,17 @@ { "name": "panda-plugin-ct", "version": "0.0.7", - "description": "", + "description": "A Panda CSS plugin for alias design tokens", + "author": "Jon Ambas ", + "license": "MIT", + "repository": { + "type": "git", + "url": "git+https://github.com/jonambas/panda-plugin-ct.git" + }, + "bugs": { + "url": "https://github.com/jonambas/panda-plugin-ct/issues" + }, + "homepage": "https://github.com/jonambas/panda-plugin-ct", "main": "dist/index.js", "types": "dist/index.d.ts", "files": [ @@ -29,8 +39,6 @@ "test": "vitest", "test:ci": "vitest run --coverage --reporter=basic" }, - "author": "Jon Ambas ", - "license": "MIT", "dependencies": { "ts-morph": "22.0.0" },