pswui/package.json
p-sw 1c34dd4e30 style: correct spacing in package.json scripts
This commit corrects the spacing for the "cli" script in package.json. It eliminates the extra spaces and aligns with the consistent style used throughout the file, promoting better readability and code structure.
2024-06-06 19:27:36 +09:00

22 lines
598 B
JSON

{
"name": "ui",
"version": "1.0.0",
"main": "index.js",
"repository": "https://github.com/p-sw/ui",
"author": "p-sw <shinwoo.park@psw.kr>",
"license": "MIT",
"workspaces": [
"packages/*",
"components"
],
"scripts": {
"react": "yarn workspace react",
"cli": "yarn workspace @psw-ui/cli",
"react:build": "yarn workspace react build",
"react:dev": "yarn workspace react dev",
"cli:build": "yarn workspace @psw-ui/cli build"
},
"private": true,
"packageManager": "yarn@4.2.2+sha256.1aa43a5304405be7a7cb9cb5de7b97de9c4e8ddd3273e4dad00d6ae3eb39f0ef"
}