-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
82 lines (82 loc) · 2.54 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
{
"name": "@tsofist/web-buddy",
"version": "1.21.0",
"description": "Configuration basics for Linters, TypeScript, Semantic Release and others",
"author": "Andrew Berdnikov <[email protected]>",
"license": "MIT",
"homepage": "https://github.com/tsofist/web-buddy/",
"scripts": {
"format": "npm run lint:code -- --fix && npm run lint:style -- --fix",
"lint": "npm run lint:code && npm run lint:style",
"lint:code": "eslint . -c .eslintrc.yaml --cache --cache-location .lint-cache/",
"lint:style": "stylelint **/*.{htm,html,vue,css,scss,sass,pcss,postcss} --cache --cache-location .lint-cache/ --allow-empty-input",
"pkg:publish": "semantic-release --no-ci",
"pkg:publish-test": "semantic-release --no-ci --dry-run",
"pkg:purge": "rimraf dist lib .coverage .lint-cache .npm node_modules",
"prepare": "husky"
},
"dependencies": {
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^11.0.1",
"@semantic-release/gitlab": "^13.2.3",
"@semantic-release/npm": "^12.0.1",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"@vue/eslint-config-prettier": "^9.0.0",
"@vue/eslint-config-typescript": "^13.0.0",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-decorator-position": "^6.0.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-json-format": "^2.0.1",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-prettier-vue": "^5.0.0",
"eslint-plugin-vue": "^9.32.0",
"eslint-plugin-yml": "^1.16.0",
"husky": "^9.1.7",
"postcss-html": "^1.7.0",
"prettier": "^3.4.2",
"semantic-release": "^24.2.0",
"stylelint": "^16.12.0",
"stylelint-config-recommended-scss": "^14.1.0",
"stylelint-config-standard": "^36.0.1",
"stylelint-config-standard-scss": "^13.1.0",
"stylelint-config-standard-vue": "^1.0.0",
"stylelint-order": "^6.0.4",
"stylelint-prettier": "^5.0.2",
"stylelint-scss": "^6.10.0",
"typescript": "~5.7.2"
},
"devDependencies": {
"rimraf": "^6.0.1",
"tslib": "^2.8.1"
},
"files": [
"eslint",
"tsconfig",
".eslintrc.yaml",
".stylelintrc.yaml",
".releaserc-*.json",
".editorconfig",
".prettierrc.js",
"README.md",
"LICENSE"
],
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
},
"engines": {
"node": ">=20"
},
"release": {
"extends": [
"./.releaserc-github.json"
]
},
"keywords": [
"eslint",
"web-config",
"linting"
]
}