-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.7 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.7 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
{
"$schema": "https://json.schemastore.org/package",
"type": "module",
"author": {
"name": "Mateusz Kadlubowski",
"email": "xeho91@pm.me",
"url": "https://xeho91.com"
},
"homepage": "https://github.com/terminal-nerds/.github",
"repository": "terminal-nerds/.github.git",
"bugs": "https://github.com/terminal-nerds/.github/issues",
"engines": {
"node": ">=18"
},
"packageManager": "pnpm@7.30.3",
"devDependencies": {
"@terminal-nerds/eslint-config": "0.19.0",
"@terminal-nerds/lint-staged-config": "0.4.0",
"@terminal-nerds/markdownlint-config": "0.7.0",
"@terminal-nerds/prettier-config": "0.8.0",
"@terminal-nerds/syncpack-config": "0.5.0",
"concurrently": "7.6.0",
"depcheck": "1.4.3",
"eslint": "8.36.0",
"husky": "8.0.3",
"lint-staged": "13.2.0",
"markdownlint-cli": "0.33.0",
"prettier": "2.8.6",
"pretty-quick": "3.1.3",
"syncpack": "9.8.4"
},
"scripts": {
"fix": "concurrently \"pnpm:fix:*\" --group --timings",
"fix:format": "pretty-quick --branch main --verbose",
"fix:js": "pnpm lint:js --fix",
"fix:md": "pnpm lint:md --fix",
"fix:pkg": "syncpack format ; syncpack fix-mismatches",
"lint": "concurrently \"pnpm:lint:*\" --group --timings",
"lint:deps": "depcheck",
"lint:format": "pnpm fix:format --check",
"lint:js": "DEBUG=\"eslint:cli-engine\" eslint . --ext .cjs,.js,.ts,.json,.yml --cache --cache-location \"./node_modules/.cache/eslint\" --ignore-pattern \"/packages/\" --ignore-pattern \"/types/\"",
"lint:md": "markdownlint . --dot --ignore-path \"./.gitignore\" --ignore \"./packages/**/*\"",
"lint:pkgs": "syncpack list-mismatches",
"lint:staged": "lint-staged --verbose",
"preinstall": "npx only-allow pnpm",
"prepare": "husky install"
}
}