generated from canisminor1990/canisminor-template
-
-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.01 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 2.01 KB
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
{
"name": "lobe-lint-monorepo",
"version": "2.1.5",
"private": true,
"homepage": "https://github.com/lobehub/lobe-lint",
"bugs": {
"url": "https://github.com/lobehub/lobe-lint/issues/new"
},
"repository": {
"type": "git",
"url": "https://github.com/lobehub/lobe-lint.git"
},
"license": "MIT",
"author": "canisminor1990 <i@canisminor.cc>, Innei <i@innei.in>",
"type": "module",
"scripts": {
"build": "pnpm -r build",
"dev": "pnpm -r --parallel dev",
"lint": "eslint \"packages/*/src/**/*.{js,jsx,ts,tsx}\" --fix",
"lint:md": "remark . --quiet --output",
"lint:style": "stylelint \"packages/*/src/**/*.{css,less,js,jsx,ts,tsx}\" --fix",
"prepare": "husky",
"prettier": "prettier -c --write \"**/**\"",
"release": "bumpp -r --all --commit \":bookmark: chore(release): v%s\" --tag \"v%s\"",
"test": "pnpm -r test",
"type-check": "pnpm -r type-check"
},
"lint-staged": {
"*.md": [
"remark --quiet --output --",
"prettier --write --no-error-on-unmatched-pattern"
],
"*.json": [
"prettier --write --no-error-on-unmatched-pattern"
],
"*.{css,less}": [
"stylelint --fix",
"prettier --write"
],
"*.{js,jsx}": [
"prettier --write",
"stylelint --fix",
"eslint --fix"
],
"*.{ts,tsx}": [
"prettier --parser=typescript --write",
"stylelint --fix",
"eslint --fix"
]
},
"devDependencies": {
"@commitlint/cli": "^19.6.1",
"@types/node": "^22.10.5",
"bumpp": "^10.4.1",
"commitlint": "^19.6.1",
"eslint": "^9.18.0",
"eslint-typegen": "^2.3.0",
"husky": "^9.1.7",
"lint-staged": "^15.3.0",
"prettier": "^3.4.2",
"remark-cli": "^12.0.1",
"stylelint": "^16.12.0",
"tsdown": "^0.9.2",
"typescript": "^5.7.3",
"vitest": "^3.0.4"
},
"packageManager": "pnpm@9.15.4",
"engines": {
"node": ">=18"
},
"pnpm": {
"patchedDependencies": {
"eslint-plugin-mdx@3.6.2": "patches/eslint-plugin-mdx@3.6.2.patch"
}
}
}