-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.54 KB
/
package.json
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
{
"private": true,
"author": "mutoe <[email protected]>",
"engines": {
"node": ">= 18"
},
"packageManager": "[email protected]",
"workspaces": [
"packages/*"
],
"type": "module",
"scripts": {
"prepare": "simple-git-hooks",
"prerelease": "pnpm build && pnpm type-check && pnpm lint && pnpm test",
"release": "pnpm prerelease && lerna version --conventional-commits && pnpm -r publish",
"build": "pnpm -r --filter=koam-core build && pnpm -r --filter=\\!koam-core build",
"type-check": "pnpm --filter=\"...[origin/main]\" type-check",
"lint": "eslint --fix .",
"test": "pnpm --filter=\"...[origin/main]\" --test-pattern=\"**/*.{test,spec}.*\" test"
},
"devDependencies": {
"@mutoe/eslint-config": "~2.4.6",
"@types/node": "^18",
"@vitest/coverage-v8": "^2.0.3",
"eslint": "^8.57.0",
"eslint-plugin-vitest": "^0.5.4",
"lerna": "^8.0.0",
"lint-staged": "^15.2.7",
"simple-git-hooks": "^2.11.1",
"typescript": "~5.5.3",
"vite": "^5.3.4",
"vitest": "^2.0.3"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged",
"pre-push": "pnpm type-check && pnpm test"
},
"lint-staged": {
"*": "eslint --fix"
},
"changelog": {
"labels": {
"tag: new feature": ":rocket: New Feature",
"tag: breaking change": ":boom: Breaking Change",
"tag: bug fix": ":bug: Bug Fix",
"tag: enhancement": ":nail_care: Enhancement",
"tag: documentation": ":memo: Documentation",
"tag: internal": ":house: Internal"
},
"cacheDir": ".changelog"
}
}