forked from aiji42/zod-i18n
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.26 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
{
"name": "zod-i18n",
"version": "0.0.0",
"description": "A library for localizing zod error messages.",
"repository": "[email protected]:aiji42/zod-i18n.git",
"author": "aiji42 <[email protected]> (https://twitter.com/aiji42_dev)",
"license": "MIT",
"private": true,
"scripts": {
"dev": "run-p dev:*",
"dev:core": "yarn workspace zod-i18n-map dev",
"dev:with-next-i18next": "yarn workspace with-next-i18next dev",
"build": "yarn workspace zod-i18n-map build",
"coverage": "yarn workspace zod-i18n-map test:coverage",
"test": "yarn workspace zod-i18n-map test",
"release": "yarn workspace zod-i18n-map release",
"prepare": "husky install"
},
"workspaces": [
"packages/*",
"examples/*"
],
"devDependencies": {
"@commitlint/cli": "^17.0.3",
"@commitlint/config-conventional": "^17.0.3",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"npm-run-all": "^4.1.5",
"prettier": "^2.7.1",
"semantic-release": "^19.0.3",
"semantic-release-monorepo": "^7.0.5"
},
"lint-staged": {
"*.{js,ts,jsx,tsx}": [
"prettier --write"
]
},
"release": {
"extends": "semantic-release-monorepo",
"branches": [
"main",
{
"name": "beta",
"prerelease": true
}
]
}
}