Files
toon/package.json
Okinea Dev 7ed9701028 ci: automate PR title linting (#229)
* ci: automate PR title linting

This will help with Squash & Merge when you need the squashed commit to have the correct Conventional Commits format so that it can be parsed when generating release notes

(With Squash & Merge the squashed commit message is taken from the PR title)

* chore: minor updates

---------

Co-authored-by: Johann Schopplich <mail@johannschopplich.com>
2025-12-01 20:56:56 +01:00

32 lines
813 B
JSON

{
"name": "@toon-format/monorepo",
"type": "module",
"version": "2.0.1",
"private": true,
"packageManager": "pnpm@10.23.0",
"scripts": {
"build": "pnpm -r --filter=./packages/** run build",
"automd": "automd",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"test": "pnpm -r test",
"test:types": "tsc --noEmit",
"release": "bumpp -r"
},
"devDependencies": {
"@antfu/eslint-config": "^6.2.0",
"@commitlint/types": "^20.0.0",
"@types/node": "^24.10.1",
"automd": "^0.4.2",
"bumpp": "^10.3.1",
"eslint": "^9.39.1",
"tsdown": "^0.16.6",
"tsx": "^4.20.6",
"typescript": "^5.9.3",
"vitest": "^4.0.13"
}
}