-
Notifications
You must be signed in to change notification settings - Fork 22
/
package.json
126 lines (126 loc) · 3.67 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
114
115
116
117
118
119
120
121
122
123
124
125
126
{
"name": "eslint-plugin-package-json",
"version": "0.15.6",
"description": "Rules for consistent, readable, and valid package.json files. 🗂️",
"homepage": "https://github.com/JoshuaKGoldberg/eslint-plugin-package-json#readme",
"bugs": {
"url": "https://github.com/JoshuaKGoldberg/eslint-plugin-package-json/issues"
},
"repository": "JoshuaKGoldberg/eslint-plugin-package-json",
"license": "MIT",
"author": {
"name": "James Zetlan",
"email": "[email protected]"
},
"type": "commonjs",
"exports": {
".": {
"types": {
"import": "./lib/index.d.mts",
"require": "./lib/index.d.ts"
},
"import": "./lib/index.mjs",
"require": "./lib/index.js"
},
"./configs/recommended": {
"types": {
"import": "./lib/configs/recommended.d.mts",
"require": "./lib/configs/recommended.d.ts"
},
"import": "./lib/configs/recommended.mjs",
"require": "./lib/configs/recommended.js"
}
},
"main": "./lib/index.js",
"files": [
"lib/",
"package.json",
"LICENSE.md",
"README.md"
],
"scripts": {
"build": "tsup",
"format": "prettier \"**/*\" --ignore-unknown",
"lint": "eslint . .*js --max-warnings 0 --report-unused-disable-directives",
"lint:eslint-docs": "npm run update:eslint-docs -- --check",
"lint:knip": "knip",
"lint:md": "markdownlint \"**/*.md\" \".github/**/*.md\"",
"lint:package-json": "npmPkgJsonLint ./package.json",
"lint:packages": "pnpm dedupe --check",
"lint:spelling": "cspell \"**\" \".github/**/*\"",
"prepare": "husky install",
"should-semantic-release": "should-semantic-release --verbose",
"test": "vitest",
"tsc": "tsc",
"update:eslint-docs": "eslint-doc-generator --rule-doc-title-format name"
},
"lint-staged": {
"*": "prettier --ignore-unknown --write"
},
"dependencies": {
"@altano/repository-tools": "^0.1.1",
"detect-indent": "6.1.0",
"detect-newline": "3.1.0",
"package-json-validator": "^0.7.0",
"semver": "^7.5.4",
"sort-object-keys": "^1.1.3",
"sort-package-json": "^1.57.0",
"validate-npm-package-name": "^6.0.0"
},
"devDependencies": {
"@release-it/conventional-changelog": "^9.0.0",
"@types/eslint": "^8.56.2",
"@types/estree": "^1.0.5",
"@types/node": "^22.0.0",
"@types/package-json-validator": "^0.6.1",
"@types/semver": "^7.5.6",
"@types/sort-object-keys": "^1.1.3",
"@types/validate-npm-package-name": "^4.0.2",
"@typescript-eslint/eslint-plugin": "^7.0.0",
"@typescript-eslint/parser": "^8.0.0",
"@vitest/coverage-v8": "^1.2.1",
"console-fail-test": "^0.5.0",
"cspell": "^8.3.2",
"eslint": "^8.56.0",
"eslint-doc-generator": "^1.6.2",
"eslint-plugin-deprecation": "^3.0.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-jsdoc": "^50.0.0",
"eslint-plugin-jsonc": "^2.12.2",
"eslint-plugin-markdown": "^3.0.1",
"eslint-plugin-n": "^16.6.2",
"eslint-plugin-no-only-tests": "^3.1.0",
"eslint-plugin-perfectionist": "^2.5.0",
"eslint-plugin-regexp": "^2.2.0",
"eslint-plugin-vitest": "^0.4.0",
"eslint-plugin-yml": "^1.12.2",
"husky": "^9.0.0",
"jsonc-eslint-parser": "^2.4.0",
"knip": "^5.0.0",
"lint-staged": "^15.2.0",
"markdownlint": "^0.36.0",
"markdownlint-cli": "^0.42.0",
"npm-package-json-lint": "^8.0.0",
"npm-package-json-lint-config-default": "^7.0.0",
"prettier": "^3.2.4",
"prettier-plugin-curly": "^0.3.0",
"prettier-plugin-packagejson": "^2.4.9",
"release-it": "^17.0.1",
"should-semantic-release": "^0.3.0",
"tsup": "^8.0.1",
"typescript": "^5.3.3",
"vitest": "^1.2.1",
"yaml-eslint-parser": "^1.2.2"
},
"peerDependencies": {
"eslint": ">=8.0.0",
"jsonc-eslint-parser": "^2.0.0"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=18"
},
"publishConfig": {
"provenance": true
}
}