62 lines
1.6 KiB
JSON
62 lines
1.6 KiB
JSON
{
|
|
"name": "@shadcn/ui",
|
|
"version": "0.0.4",
|
|
"description": "Add @shadcn/ui components to your app.",
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"license": "MIT",
|
|
"author": {
|
|
"name": "shadcn",
|
|
"url": "https://twitter.com/shadcn"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/shadcn/ui.git",
|
|
"directory": "packages/cli"
|
|
},
|
|
"keywords": [
|
|
"components",
|
|
"ui",
|
|
"tailwind",
|
|
"radix-ui",
|
|
"shadcn"
|
|
],
|
|
"type": "module",
|
|
"exports": "./dist/index.js",
|
|
"bin": {
|
|
"@shadcn/ui": "./dist/index.js"
|
|
},
|
|
"dependencies": {
|
|
"chalk": "5.2.0",
|
|
"commander": "^10.0.0",
|
|
"execa": "^7.0.0",
|
|
"fs-extra": "^11.1.0",
|
|
"node-fetch": "^3.3.0",
|
|
"ora": "^6.1.2",
|
|
"prompts": "^2.4.2",
|
|
"zod": "^3.20.2"
|
|
},
|
|
"devDependencies": {
|
|
"@types/fs-extra": "^11.0.1",
|
|
"@types/prompts": "^2.4.2",
|
|
"rimraf": "^4.1.3",
|
|
"tsup": "^6.6.3",
|
|
"type-fest": "^3.6.1",
|
|
"typescript": "^4.9.5"
|
|
},
|
|
"scripts": {
|
|
"dev": "tsup --watch",
|
|
"build": "tsup",
|
|
"typecheck": "tsc --noEmit",
|
|
"clean": "rimraf dist && rimraf components",
|
|
"start:dev": "cross-env COMPONENTS_BASE_URL=http://localhost:3000 node dist/index.js",
|
|
"start": "node dist/index.js",
|
|
"format:write": "prettier --write \"**/*.{ts,tsx,mdx}\" --cache",
|
|
"format:check": "prettier --check \"**/*.{ts,tsx,mdx}\" --cache",
|
|
"release": "changeset version",
|
|
"pub:beta": "pnpm build && pnpm publish --no-git-checks --access public --tag beta",
|
|
"pub:next": "pnpm build && pnpm publish --no-git-checks --access public --tag next",
|
|
"pub:release": "pnpm build && pnpm publish --access public"
|
|
}
|
|
} |