-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.53 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.53 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"name": "@modulify/conventional",
"type": "module",
"version": "0.1.0",
"license": "ISC",
"packageManager": "yarn@4.12.0",
"workspaces": [
"packages/*"
],
"keywords": [
"conventional"
],
"dependencies": {
"@modulify/conventional-bump": "^0.1.0",
"@modulify/conventional-changelog": "^0.1.0",
"@modulify/conventional-git": "^0.1.0",
"@modulify/conventional-release": "^0.1.0",
"@modulify/git-toolkit": "^0.0.2",
"@modulify/pkg": "^1.0.1",
"semver": "^7.7.3"
},
"devDependencies": {
"@commitlint/cli": "^20.4.1",
"@commitlint/config-conventional": "^20.4.1",
"@eslint/js": "^9.36.0",
"@types/node": "^22.18.6",
"@types/semver": "^7.7.1",
"@types/yargs": "^17.0.35",
"@vitest/coverage-istanbul": "^4.0.16",
"@vitest/ui": "^4.0.16",
"eslint": "^9.39.2",
"globals": "^17.0.0",
"husky": "^9.1.7",
"tslib": "^2.8.1",
"tsx": "^4.19.2",
"typescript": "^5.9.3",
"typescript-eslint": "^8.51.0",
"vite": "^7.3.0",
"vite-plugin-dts": "^4.5.4",
"vitest": "^4.0.16"
},
"scripts": {
"build": "yarn workspaces foreach -A --topological-dev run build",
"commitlint": "commitlint",
"commitlint:edit": "commitlint --edit",
"eslint": "eslint .",
"peers:check": "bash ./scripts/check-peers.sh",
"release": "conventional-release",
"release:dry": "conventional-release --dry",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"typecheck": "tsc -b tsconfig.typecheck.json",
"prepare": "husky"
}
}