-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
executable file
·78 lines (78 loc) · 1.92 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
{
"name": "@alexlit/lint-kit",
"version": "137.4.0",
"private": false,
"description": "Preset of configuration files and dependencies for linting web applications (designed for Vue.js with TypeScript)",
"keywords": [
"commitlint",
"config",
"eslint",
"htmllint",
"kit",
"lint",
"markdownlint",
"npmlint",
"preset",
"prettier",
"stylelint",
"toolkit"
],
"homepage": "https://github.com/alex-lit/lint-kit#readme",
"bugs": {
"url": "https://github.com/alex-lit/lint-kit/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/alex-lit/lint-kit.git"
},
"license": "MIT",
"author": "Alexey Litovchenko",
"maintainers": [
{
"name": "Alexey Litovchenko",
"email": "[email protected]",
"url": "https://alexlit.gitlab.io"
}
],
"type": "module",
"main": "README.md",
"files": [
".markdownlint.json",
".npmpackagejsonlintrc.json",
".npmrc",
"commitlint.config.js",
"eslint.config.js",
"lint-staged.config.js",
"linthtml.config.js",
"packages",
"prettier.config.js",
"scripts",
"stylelint.config.js"
],
"workspaces": [
"packages/*"
],
"scripts": {
"check:editorconfig": "./scripts/check.editorconfig.sh",
"i": "./scripts/i.sh",
"preinstall": "./scripts/preinstall.sh",
"lint": "time ./scripts/lint.sh",
"lint:eslint": "time ./scripts/lint.eslint.sh",
"lint:htmllint": "time ./scripts/lint.htmllint.sh",
"lint:markdownlint": "time ./scripts/lint.markdownlint.sh",
"lint:npmlint": "time ./scripts/lint.npmlint.sh",
"lint:stylelint": "time ./scripts/lint.stylelint.sh",
"ou": "./scripts/ou.sh",
"prepare": "husky",
"release": "./scripts/release.sh",
"semver": "./scripts/semver.sh",
"up": "./scripts/up.sh"
},
"devDependencies": {
"changelogen": "^0.5.7"
},
"engines": {
"node": ">=18",
"pnpm": ">=9"
}
}