-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.29 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.29 KB
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
{
"name": "openlaw-git-pipeline",
"version": "0.5.7",
"private": true,
"type": "module",
"packageManager": "pnpm@9.15.0",
"scripts": {
"build": "turbo run build",
"test": "turbo run test",
"lint": "turbo run lint",
"typecheck": "turbo run typecheck",
"changelog": "conventional-changelog -p conventionalcommits -i CHANGELOG.md -s -r 0",
"version:patch": "npm version patch --no-git-tag-version && pnpm changelog",
"version:minor": "npm version minor --no-git-tag-version && pnpm changelog",
"version:major": "npm version major --no-git-tag-version && pnpm changelog",
"release": "git add -A && git commit -m \"chore(release): v$(node -p 'require(\"./package.json\").version')\" && git tag v$(node -p 'require(\"./package.json\").version') && git push && git push --tags"
},
"pnpm": {
"overrides": {
"yaml@>=2.0.0 <2.8.3": ">=2.8.3"
}
},
"devDependencies": {
"@commitlint/cli": "^20.5.0",
"@commitlint/config-conventional": "^20.5.0",
"@eslint/js": "^10.0.1",
"@typescript-eslint/eslint-plugin": "^8.57.2",
"@typescript-eslint/parser": "^8.57.2",
"conventional-changelog": "^7.2.0",
"eslint": "^10.1.0",
"turbo": "^2.4.0",
"typescript": "^5.8.0",
"typescript-eslint": "^8.57.2",
"vitest": "^4.1.2"
}
}