generated from canisminor1990/canisminor-template
-
-
Notifications
You must be signed in to change notification settings - Fork 51
/
Copy pathpackage.json
94 lines (94 loc) · 2.83 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
91
92
93
94
{
"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:label": "npm run dev --prefix=packages/lobe-label",
"dev:seo": "npm run dev --prefix=packages/lobe-seo",
"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",
"link:label": "npm run link --prefix=packages/lobe-label",
"link:seo": "npm run link --prefix=packages/lobe-seo",
"lint": "eslint \"{src,packages}/**/*.{js,jsx,ts,tsx}\" --fix",
"lint:md": "remark . --quiet --output",
"prepare": "husky",
"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.6.1",
"@lobehub/cli-shebang": "^1.0.2",
"@lobehub/lint": "^1.25.3",
"@sindresorhus/tsconfig": "^5.1.1",
"@types/lodash-es": "^4.17.12",
"@types/node": "^20.17.12",
"@types/pangu": "^4.0.2",
"@types/react": "^19.0.3",
"@types/update-notifier": "^6.0.8",
"@umijs/lint": "^4.4.4",
"@vitest/coverage-v8": "~1.2.2",
"clean-pkg-json": "^1.2.0",
"commitlint": "^19.6.1",
"eslint": "^8.57.1",
"husky": "^9.1.7",
"ink-testing-library": "^3.0.0",
"lerna": "^8.1.9",
"lint-staged": "^15.3.0",
"multi-semantic-release": "^3.0.2",
"pkgroll": "^2.6.1",
"prettier": "^3.4.2",
"remark": "^15.0.1",
"remark-cli": "^12.0.1",
"semantic-release": "^21.1.2",
"stylelint": "^15.11.0",
"ts-node": "^10.9.2",
"typescript": "^5.7.2",
"vitest": "~1.2.2"
},
"engines": {
"node": ">=18"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
}
}