forked from lobehub/lobe-cli-toolbox
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
90 lines (90 loc) · 2.51 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "lobe-cli-toolbox",
"version": "0.0.0",
"private": true,
"homepage": "https://github.com/lobehub/lobe-cli-toolbox",
"bugs": {
"url": "https://github.com/lobehub/lobe-cli-toolbox/issues/new"
},
"repository": {
"type": "git",
"url": "https://github.com/lobehub/lobe-cli-toolbox.git"
},
"license": "MIT",
"author": "LobeHub <[email protected]>",
"workspaces": [
"packages/*"
],
"scripts": {
"build": "lerna run build --parallel",
"ci": "npm run type-check && npm run lint",
"dev": "lerna run dev --parallel",
"dev:commit": "npm run dev --prefix=packages/lobe-commit",
"dev:i18n": "npm run dev --prefix=packages/lobe-i18n",
"dev:ui": "npm run dev --prefix=packages/lobe-cli-ui",
"link:commit": "npm run link --prefix=packages/lobe-commit",
"link:i18n": "npm run link --prefix=packages/lobe-i18n",
"lint": "eslint \"{src,packages}/**/*.{js,jsx,ts,tsx}\" --fix",
"lint:md": "remark . --quiet --output",
"prepare": "husky install",
"prettier": "prettier -c --write \"**/**\"",
"release": "multi-semantic-release",
"start": "npm run dev",
"test": "lerna run test --parallel && npm run lint",
"type-check": "lerna run type-check --parallel"
},
"lint-staged": {
"*.md": [
"remark --quiet --output --",
"prettier --write --no-error-on-unmatched-pattern"
],
"*.json": [
"prettier --write --no-error-on-unmatched-pattern"
],
"*.{js,jsx,cjs,mjs}": [
"prettier --write",
"eslint --fix"
],
"*.{ts,tsx}": [
"prettier --parser=typescript --write",
"eslint --fix"
]
},
"devDependencies": {
"@commitlint/cli": "^19",
"@lobehub/cli-shebang": "^1",
"@lobehub/lint": "latest",
"@sindresorhus/tsconfig": "^5",
"@types/lodash-es": "^4",
"@types/node": "^20",
"@types/pangu": "^4",
"@types/react": "^18",
"@types/update-notifier": "^6",
"@umijs/lint": "^4",
"@vitest/coverage-v8": "latest",
"clean-pkg-json": "^1",
"commitlint": "^19",
"eslint": "^8",
"husky": "^9",
"ink-testing-library": "^3",
"lerna": "^8",
"lint-staged": "^15",
"multi-semantic-release": "^3",
"pkgroll": "^2",
"prettier": "^3",
"remark": "^14",
"remark-cli": "^11",
"semantic-release": "^21",
"stylelint": "latest",
"ts-node": "^10",
"typescript": "^5",
"vitest": "latest"
},
"engines": {
"node": ">=18"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
}
}