-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 1.08 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
{
"type": "module",
"workspaces": [
"apps/*",
"packages/*",
"packages/plugins/*"
],
"scripts": {
"build:schema": "npm run build:schema -w intl-schematic",
"build": "tsup",
"commit-build": "(git diff --quiet && git diff --staged --quiet) || (git commit -am \"Update dist\")",
"preversion": "npm run build && npm run commit-build",
"version": "cross-env-shell \"npm version $npm_package_version --no-git-tag-version -ws\" && git add **/package*.json",
"prerelease": "npm version prerelease --preid=rc",
"pre-patch": "npm version prerelease --preid=rc",
"pre-minor": "npm version preminor --preid=rc",
"pre-major": "npm version premajor --preid=rc",
"patch": "npm version patch",
"minor": "npm version minor",
"major": "npm version major"
},
"engines": {
"node": ">=18"
},
"packageManager": "[email protected]",
"devDependencies": {
"@types/node": "^20.10.5",
"colorette": "^2.0.20",
"cross-env": "^7.0.3",
"fdir": "^6.1.1",
"tsup": "^8.0.1"
},
"version": "1.0.0-rc.9"
}