-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·113 lines (113 loc) · 3.17 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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
{
"name": "stijnklomp-linting-formatting-config",
"version": "7.0.3",
"private": false,
"description": "Linting and formatting configuration for Typescript projects using typescript-eslint.",
"homepage": "https://github.com/stijnklomp/linting-formatting-config#readme",
"bugs": {
"url": "https://github.com/stijnklomp/linting-formatting-config/issues"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/stijnklomp/linting-formatting-config.git"
},
"license": "MIT",
"author": "stijnklomp",
"type": "module",
"main": "./dist/index.js",
"files": [
"dist/**/*",
".editorconfig",
"sortJson.sh"
],
"scripts": {
"build": "rm -rf dist && tsc -p declaration.tsconfig.json",
"build:add-ignores": "ts-ignore-import '**/*.d.ts' --allow=eslint",
"build:declaration": "tsc -p declaration.tsconfig.json",
"build:old": "npm run clean && npm run build:declaration && npm run build:add-ignores",
"clean": "rm -rf $(find . -maxdepth 2 -type f -name '*.d.ts*')",
"lint": "eslint --report-unused-disable-directives . --cache",
"lint:fix": "./sortJson.sh && eslint --report-unused-disable-directives . --cache --fix",
"prepare": "husky",
"prepublishOnly": "npm run build"
},
"devDependencies": {
"@eslint/js": "^9.15.0",
"@typescript-eslint/parser": "^8.15.0",
"eslint": "^9.15.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jest": "^28.9.0",
"eslint-plugin-jsonc": "^2.18.2",
"eslint-plugin-markdown": "^5.1.0",
"eslint-plugin-package-json": "^0.15.6",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-react-hooks": "^5.0.0",
"eslint-plugin-yml": "^1.15.0",
"husky": "^9.1.7",
"json-sort-cli": "^4.0.4",
"prettier": "^3.3.3",
"prettier-plugin-packagejson": "^2.5.5",
"stylelint": "^16.10.0",
"stylelint-config-prettier-scss": "^1.0.0",
"stylelint-config-standard-scss": "^13.1.0",
"typedoc": "^0.26.11",
"typescript": "^5.6.3",
"typescript-eslint": "^8.15.0"
},
"peerDependencies": {
"@eslint/js": "^9.x",
"@typescript-eslint/parser": "^8.x",
"eslint": "^9.x",
"eslint-config-prettier": "^9.x",
"eslint-plugin-jest": "^28.x",
"eslint-plugin-jsonc": "^2.x",
"eslint-plugin-markdown": "^5.x",
"eslint-plugin-package-json": "^0.x",
"eslint-plugin-prettier": "^5.x",
"eslint-plugin-react": "^7.x",
"eslint-plugin-react-hooks": "^5.x",
"eslint-plugin-yml": "^1.x",
"json-sort-cli": ">=4.x",
"prettier": "^3.x",
"prettier-plugin-packagejson": "^2.x",
"stylelint": "^16.x",
"stylelint-config-prettier-scss": "^1.x",
"stylelint-config-standard-scss": "^13.x",
"typedoc": "^0.x",
"typescript": ">=5.x",
"typescript-eslint": "^8.x"
},
"peerDependenciesMeta": {
"@eslint/js": {
"optional": true
},
"eslint-plugin-jest": {
"optional": true
},
"eslint-plugin-markdown": {
"optional": true
},
"eslint-plugin-react": {
"optional": true
},
"eslint-plugin-react-hooks": {
"optional": true
},
"stylelint": {
"optional": true
},
"stylelint-config-prettier-scss": {
"optional": true
},
"stylelint-config-standard-scss": {
"optional": true
},
"typedoc": {
"optional": true
},
"typescript": {
"optional": true
}
}
}