-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.69 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
{
"type": "module",
"name": "eslint-config-kwork",
"description": "ESLint configs for KnowledgeWork's projects.",
"version": "2.0.12",
"packageManager": "pnpm@9.14.2",
"repository": {
"type": "git",
"url": "https://github.com/knowledge-work/eslint-config-kwork.git"
},
"keywords": [
"eslint",
"config",
"eslintconfig"
],
"license": "MIT",
"exports": {
"./base": {
"import": "./base.js"
},
"./frontend": {
"import": "./frontend.js"
}
},
"files": [
"base.js",
"frontend.js"
],
"scripts": {
"setup": "pnpm i",
"check": "pnpm check:prettier",
"check:prettier": "prettier --check .",
"format": "prettier --write .",
"release": "pnpm release:check && pnpm release:publish",
"release:check": "echo \"Run check for version $npm_package_version\" && pnpm check",
"release:publish": "git push --tags && git push origin main && pnpm publish ."
},
"dependencies": {
"@eslint/eslintrc": "3.2.0",
"@typescript-eslint/eslint-plugin": "8.16.0",
"@typescript-eslint/parser": "8.16.0",
"eslint-config-airbnb": "19.0.4",
"eslint-config-airbnb-base": "15.0.0",
"eslint-config-airbnb-typescript": "18.0.0",
"eslint-config-next": "15.0.3",
"eslint-plugin-date": "1.0.0",
"eslint-plugin-eslint-comments": "3.2.0",
"eslint-plugin-jsx-expressions": "1.3.2",
"eslint-plugin-return-type": "1.0.24",
"eslint-plugin-storybook": "0.11.1",
"eslint-plugin-strict-dependencies": "1.3.13",
"eslint-plugin-unused-imports": "4.1.4",
"globals": "15.12.0"
},
"devDependencies": {
"prettier": "3.4.1",
"prettier-config-kwork": "0.0.23"
},
"prettier": "prettier-config-kwork"
}