@moontra/moonui-cli
Version:
CLI tool for MoonUI component library
91 lines (90 loc) • 2.6 kB
JSON
{
"name": "@moontra/moonui-cli",
"version": "2.6.8",
"description": "CLI tool for MoonUI component library",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"moonui": "./dist/index.js"
},
"files": [
"dist",
"src/postcss",
"src/vite",
"src/theme-presets.ts",
"src/utils/theme-generator.ts"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"./postcss/moonui-theme-plugin": {
"types": "./src/postcss/moonui-theme-plugin.d.ts",
"require": "./src/postcss/moonui-theme-plugin.js"
},
"./vite/moonui-theme-plugin": {
"types": "./dist/vite/moonui-theme-plugin.d.ts",
"import": "./dist/vite/moonui-theme-plugin.js"
}
},
"scripts": {
"build": "tsup src/index.ts --format cjs,esm --dts",
"dev": "tsup src/index.ts --format cjs,esm --dts --watch --sourcemap",
"clean": "rm -rf dist",
"lint": "eslint \"src/**/*.ts*\"",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"prepublishOnly": "npm run clean && npm run build",
"pub": "npm version patch && npm run build && npm publish --access=public",
"pub:minor": "npm version minor && npm run build && npm publish --access=public",
"pub:major": "npm version major && npm run build && npm publish --access=public"
},
"keywords": [
"ui",
"components",
"cli",
"moonui"
],
"author": "MoonUI",
"license": "MIT",
"dependencies": {
"@radix-ui/react-primitive": "^2.1.3",
"@types/jsonwebtoken": "^9.0.10",
"@types/node-fetch": "^2.6.12",
"@types/react-syntax-highlighter": "^15.5.13",
"chalk": "^4.1.2",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"commander": "^10.0.1",
"figlet": "^1.6.0",
"fs-extra": "^11.1.1",
"jsonwebtoken": "^9.0.2",
"node-fetch": "^3.3.2",
"open": "^8.4.2",
"ora": "^5.4.1",
"prompts": "^2.4.2",
"react-syntax-highlighter": "^15.6.1",
"tailwind-merge": "^3.3.1",
"ts-morph": "^18.0.0"
},
"devDependencies": {
"@next/bundle-analyzer": "^15.4.6",
"@sentry/nextjs": "^10.3.0",
"@svgr/webpack": "^8.1.0",
"@types/figlet": "^1.7.0",
"@types/fs-extra": "^11.0.4",
"@types/node": "^18.16.0",
"@types/ora": "^3.1.0",
"@types/prompts": "^2.4.9",
"autoprefixer": "^10.4.21",
"eslint": "^8.39.0",
"jest": "^29.5.0",
"postcss": "^8.5.6",
"tailwindcss": "^4.1.11",
"tsup": "^6.7.0",
"typescript": "^5.0.4"
}
}