* Install/add components in base coss-ui package * fix components imports * add yarn script to pull * Update packagejson * remove skeleton duplicates * feat: allow importing components with the cli * fix: update exports in package.json to reference styles.css instead of globals.css * add lucide dep * refactor: re-pull components * refactor: remove unused registries section from components.json * refactor: implement changes suggested by Volnei * refactor(wip): implemet coss ui components on the profile page * fix src/src problem * update command to overwrite existing components * pulled from registry * restore globals.css * feat: add pull script * feat: enhance pull script with validation and error handling * remove duplicate components * refactor: reimport coss component and fix ts errors * fix: components pulling * chore: regenerate yarn.lock * chore: remove tailwindcss/forms * trying different moduleResolution * TypeScript requires module to also be "NodeNext". * remove unnecessary changes * type fixes plus resolve @coss/ui * use bundler tsconfig * add missing deps to features and ui * Add bundler to other packages * fix module enext resolution with bundler * remove reduant files * remove package json from features * revert unrelated change to the PR --------- Co-authored-by: pasqualevitiello <pasqualevitiello@gmail.com> Co-authored-by: Eunjae Lee <hey@eunjae.dev>
31 lines
795 B
JSON
31 lines
795 B
JSON
{
|
|
"name": "@coss/ui",
|
|
"private": true,
|
|
"version": "0.0.0",
|
|
"exports": {
|
|
"./styles.css": "./src/styles/globals.css",
|
|
"./lib/*": "./src/lib/*.ts",
|
|
"./components/*": "./src/components/*.tsx",
|
|
"./hooks/*": "./src/hooks/*.ts"
|
|
},
|
|
"scripts": {
|
|
"lint": "eslint .",
|
|
"lint:fix": "eslint . --fix",
|
|
"type-check": "tsc --pretty --noEmit",
|
|
"type-check:ci": "tsc-absolute --pretty --noEmit",
|
|
"registry:pull": "ts-node ../../scripts/pull-coss-ui-components.ts"
|
|
},
|
|
"dependencies": {
|
|
"@base-ui/react": "^1.0.0",
|
|
"class-variance-authority": "0.7.1",
|
|
"clsx": "^2.1.1",
|
|
"lucide-react": "0.555.0",
|
|
"tailwind-merge": "^3.4.0"
|
|
},
|
|
"devDependencies": {
|
|
"ts-node": "^10.9.2",
|
|
"tsc-absolute": "1.0.0",
|
|
"typescript": "5.9.0-beta"
|
|
}
|
|
}
|