@johnmusans/arcadia-ui-style-engine
Version:
Shared style system logic and types for Arcadia UI components
77 lines (76 loc) • 2.08 kB
JSON
{
"name": "@johnmusans/arcadia-ui-style-engine",
"version": "0.1.0",
"type": "module",
"description": "Shared style system logic and types for Arcadia UI components",
"keywords": [
"arcadia-ui",
"design-system",
"style-engine",
"css-in-js",
"typescript"
],
"homepage": "https://github.com/Johnmusans/Arcane-UI",
"repository": {
"type": "git",
"url": "https://github.com/Johnmusans/Arcane-UI.git",
"directory": "packages/style-engine"
},
"license": "MIT",
"author": {
"name": "mehdibha",
"url": "https://x.com/mehdibha_"
},
"exports": {
"./core": {
"types": "./dist/core/index.d.ts",
"default": "./src/core/index.ts"
},
"./utils": {
"types": "./dist/utils/index.d.ts",
"default": "./src/utils/index.ts"
},
"./schemas": {
"types": "./dist/schemas.d.ts",
"default": "./src/schemas.ts"
},
"./shadcn-registry": {
"types": "./dist/shadcn-registry/index.d.ts",
"default": "./src/shadcn-registry/index.ts"
},
"./constants": {
"types": "./dist/constants.d.ts",
"default": "./src/constants.ts"
},
"./types": {
"types": "./dist/types.d.ts",
"default": "./src/types.ts"
}
},
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"clean": "git clean -xdf .cache .turbo dist node_modules",
"format": "prettier --check . --ignore-path ../../.gitignore",
"lint": "eslint",
"typecheck": "tsc --noEmit --emitDeclarationOnly false",
"test": "vitest run"
},
"dependencies": {
"@adobe/leonardo-contrast-colors": "^1.0.0",
"@arcadia-ui/registry-definition": "workspace:*",
"deepmerge": "^4.3.1",
"ts-morph": "^18.0.0",
"zod": "catalog:"
},
"devDependencies": {
"@arcadia-ui/eslint-config": "workspace:*",
"@arcadia-ui/prettier-config": "workspace:*",
"@arcadia-ui/ts-config": "workspace:*",
"eslint": "catalog:",
"prettier": "catalog:",
"shadcn": "catalog:",
"typescript": "catalog:"
},
"prettier": "@arcadia-ui/prettier-config"
}