forked from trionesdev/triones-designable
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
27 lines (27 loc) · 832 Bytes
/
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
{
"name": "root",
"private": true,
"workspaces": [
"examples/*",
"formily/*",
"packages/*"
],
"scripts": {
"bootstrap": "lerna bootstrap",
"clean": "lerna clean",
"build": "lerna run build",
"preversion": "yarn run build",
"version:beta": "lerna version prerelease --preid beta",
"release:github": "ts-node scripts/release release",
"release:force": "lerna publish from-package --yes",
"prelease:force": "lerna publish from-package --yes --dist-tag next",
"release": "lerna publish",
"codingPublish": "lerna publish --registry=https://moensun-npm.pkg.coding.net/npm/moensun/",
"prettier": "prettier --write '**/*.{js,jsx,tsx,ts,less,md,json}'"
},
"devDependencies": {
"eslint-plugin-prettier": "^5.1.3",
"lerna": "^7.1.1",
"prettier": "^3.2.5"
}
}