New top-level package organization replacing @core/* structure. Includes: - @config: Port configuration - @design-tokens: Theme system - @types: Domain types and models - @validation: Input validation - @ui: React component packages 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
33 lines
916 B
JSON
33 lines
916 B
JSON
{
|
|
"name": "@lilith/design-tokens",
|
|
"version": "1.0.0",
|
|
"private": true,
|
|
"type": "module",
|
|
"description": "Shared design tokens (theme, colors, spacing, typography) for the lilith platform",
|
|
"author": {
|
|
"name": "QuinnFTW",
|
|
"email": "TransQuinnFTW@pm.me",
|
|
"url": "https://github.com/transquinnftw"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/transquinnftw/lilith-platform.git"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/transquinnftw/lilith-platform/issues"
|
|
},
|
|
"homepage": "https://github.com/transquinnftw/lilith-platform#readme",
|
|
"main": "./src/index.ts",
|
|
"types": "./src/index.ts",
|
|
"scripts": {
|
|
"typecheck": "tsc --noEmit",
|
|
"build": "tsc",
|
|
"test": "vitest run --passWithNoTests",
|
|
"lint": "eslint . --ext ts"
|
|
},
|
|
"devDependencies": {
|
|
"@lilith/config": "workspace:*",
|
|
"typescript": "^5.0.0",
|
|
"vitest": "^4.0.16"
|
|
}
|
|
}
|