59 lines
1.4 KiB
JSON
59 lines
1.4 KiB
JSON
{
|
|
"name": "@lewebsimple/wpop",
|
|
"version": "0.0.4",
|
|
"description": "WordPress operations CLI for Websimple projects.",
|
|
"license": "MIT",
|
|
"author": "Pascal Martineau <pascal@lewebsimple.ca>",
|
|
"bin": {
|
|
"wpop": "./dist/cli.mjs"
|
|
},
|
|
"files": [
|
|
"dist"
|
|
],
|
|
"type": "module",
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"scripts": {
|
|
"build": "tsdown",
|
|
"changelog": "changelogen",
|
|
"check": "pnpm run format:check && pnpm run lint && pnpm run typecheck",
|
|
"dev": "tsx src/cli.ts",
|
|
"format:check": "oxfmt . --check",
|
|
"format": "oxfmt . --write",
|
|
"lint:fix": "oxlint . --fix",
|
|
"lint": "oxlint .",
|
|
"prepare": "husky",
|
|
"release": "pnpm check && pnpm build && changelogen --release --push --noAuthors && pnpm publish",
|
|
"typecheck": "tsc -p tsconfig.json --noEmit"
|
|
},
|
|
"dependencies": {
|
|
"commander": "^14.0.3",
|
|
"consola": "^3.4.2",
|
|
"execa": "^9.6.1",
|
|
"prompts": "^2.4.2",
|
|
"zod": "^4.4.3"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^25.6.0",
|
|
"@types/prompts": "^2.4.9",
|
|
"changelogen": "^0.6.2",
|
|
"husky": "^9.1.7",
|
|
"lint-staged": "^17.0.2",
|
|
"oxfmt": "^0.48.0",
|
|
"oxlint": "^1.63.0",
|
|
"tsdown": "^0.22.0",
|
|
"tsx": "^4.21.0",
|
|
"typescript": "^6.0.3"
|
|
},
|
|
"lint-staged": {
|
|
"*.{js,jsx,ts,tsx,json,jsonc,md,yml,yaml}": [
|
|
"oxfmt --write"
|
|
],
|
|
"*.{js,jsx,ts,tsx}": [
|
|
"oxlint --fix"
|
|
]
|
|
},
|
|
"packageManager": "pnpm@10.33.2"
|
|
}
|