-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 2.02 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
53
54
55
{
"name": "semo-mono",
"private": true,
"devDependencies": {
"eslint": "^8.57.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.1.1",
"husky": "^9.0.11",
"lerna": "^8.1.2",
"lint-staged": "^15.2.2",
"prettier": "^3.2.5",
"stmux": "^1.8.7",
"vitepress": "^1.0.1",
"vue": "^3.4.21"
},
"scripts": {
"test": "exit 0",
"lerna": "lerna",
"semo": "lerna exec --scope @semo/cli -- yarn semo",
"prepublish": "lerna run prepublish",
"lerna:publish": "lerna publish from-git --yes --no-verify-access",
"docs:dev": "vitepress dev",
"docs:build": "vitepress build",
"docs:preview": "vitepress preview",
"upgrade:preview": "lerna exec -- ncu && ncu",
"upgrade": "lerna exec -- ncu -u --timeout 30000 && lerna exec -- yarn && ncu -u --timeout 30000 && yarn",
"deploy:major": "lerna version major",
"deploy:minor": "lerna version minor",
"deploy": "lerna version patch -y",
"watch:core": "cd packages/core && yarn watch",
"watch:application": "cd packages/semo-plugin-application && yarn watch",
"watch:hook": "cd packages/semo-plugin-hook && yarn watch",
"watch:plugin": "cd packages/semo-plugin-plugin && yarn watch",
"watch:script": "cd packages/semo-plugin-script && yarn watch",
"watch:shell": "cd packages/semo-plugin-shell && yarn watch",
"watch:cli": "cd packages/cli && yarn watch",
"watch": "stmux -M -e Error -- [ [ -t core 'yarn watch:core' .. -t cli 'yarn watch:cli' ] : [ -t application 'yarn watch:application' .. -t plugin 'yarn watch:plugin' .. -t script 'yarn watch:script' .. -t shell 'yarn watch:shell' .. -t hook 'yarn watch:hook' ] ]",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "[email protected]:semojs/semo.git"
},
"lint-staged": {
"*.{js,json}": [
"prettier --write"
],
"*.ts?(x)": [
"eslint --fix",
"prettier --parser=typescript --write"
]
}
}