File size: 2,111 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 |
{
"name": "@chakra-ui/cli",
"version": "3.23.0",
"description": "Generate theme typings for autocomplete",
"keywords": [
"theme",
"theming",
"typings",
"generator",
"chakra-ui",
"typegen",
"theme"
],
"author": "Segun Adebayo <sage@adebayosegun.com>",
"homepage": "https://github.com/chakra-ui/chakra-ui#readme",
"license": "MIT",
"type": "module",
"main": "dist/esm/index.js",
"module": "dist/esm/index.js",
"types": "dist/types/index.d.ts",
"sideEffects": false,
"files": [
"dist",
"bin"
],
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/chakra-ui/chakra-ui.git"
},
"bugs": {
"url": "https://github.com/chakra-ui/chakra-ui/issues"
},
"bin": {
"chakra": "bin/index.js"
},
"scripts": {
"prepack": "tsx ../../scripts/conditions.ts",
"postpack": "tsx ../../scripts/conditions.ts --restore",
"clean": "rimraf dist .turbo",
"build:fast": "tsx ../../scripts/build/main.ts",
"build": "tsx ../../scripts/build/main.ts --dts",
"dev": "pnpm build:fast --watch",
"typecheck": " tsc --noEmit"
},
"dependencies": {
"@clack/prompts": "0.11.0",
"@pandacss/is-valid-prop": "0.54.0",
"@types/cli-table": "^0.3.4",
"@types/debug": "^4.1.12",
"@visulima/boxen": "^2.0.2",
"bundle-n-require": "1.1.2",
"globby": "14.1.0",
"chokidar": "3.6.0",
"cli-table": "^0.3.11",
"commander": "12.1.0",
"debug": "^4.4.1",
"https-proxy-agent": "^7.0.6",
"look-it-up": "2.1.0",
"node-fetch": "3.3.2",
"package-manager-detector": "1.3.0",
"prettier": "3.6.2",
"scule": "1.3.0",
"sucrase": "^3.35.0",
"zod": "^3.25.67"
},
"peerDependencies": {
"@chakra-ui/react": ">=3.0.0-next.0"
},
"devDependencies": {
"@chakra-ui/react": "workspace:*"
},
"exports": {
".": {
"dev": "./src/index.ts",
"import": {
"types": "./dist/types/index.d.ts",
"default": "./dist/esm/index.js"
}
},
"./package.json": "./package.json"
}
}
|