-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
139 lines (139 loc) · 3.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
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
127
128
129
130
131
132
133
134
135
136
137
138
139
{
"name": "eslint-plugin-expect-type",
"version": "0.4.3",
"description": "ESLint plugin with ^? Twoslash, $ExpectError, and $ExpectType type assertions. 🧩",
"keywords": [
"dtslint",
"d.ts",
"eslint",
"tslint",
"plugin",
"config",
"rule",
"typescript",
"ts",
"Expect",
"Assert",
"Type",
"Snapshot",
"$ExpectError",
"$ExpectType",
"$ExpectTypeSnapshot",
"twoslash",
"^?"
],
"repository": {
"type": "git",
"url": "https://github.com/JoshuaKGoldberg/eslint-plugin-expect-type"
},
"license": "Apache-2.0",
"author": {
"name": "JoshuaKGoldberg",
"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",
"build:docs": "eslint-doc-generator",
"format": "prettier \"**/*\" --ignore-unknown",
"lint": "eslint . .*js --max-warnings 0",
"lint:docs": "eslint-doc-generator --check",
"lint:knip": "knip",
"lint:md": "markdownlint \"**/*.md\" \".github/**/*.md\" --rules sentences-per-line",
"lint:package-json": "npmPkgJsonLint ./package.json",
"lint:packages": "pnpm dedupe --check",
"lint:spelling": "cspell \"**\" \".github/**/*\"",
"prepare": "husky",
"should-semantic-release": "should-semantic-release --verbose",
"test": "vitest",
"tsc": "tsc"
},
"lint-staged": {
"*": "prettier --ignore-unknown --write"
},
"dependencies": {
"@typescript-eslint/utils": "^6.10.0 || ^7.0.1 || ^8",
"fs-extra": "^11.1.1"
},
"devDependencies": {
"@eslint-community/eslint-plugin-eslint-comments": "4.4.1",
"@eslint/js": "^9.10.0",
"@release-it/conventional-changelog": "^9.0.0",
"@types/dedent": "^0.7.0",
"@types/fs-extra": "^11.0.0",
"@types/node": "^22.0.0",
"@typescript-eslint/rule-tester": "^8.5.0",
"@typescript-eslint/utils": "^8.5.0",
"@vitest/coverage-v8": "^1.0.0",
"@vitest/eslint-plugin": "^1.1.0",
"console-fail-test": "^0.5.0",
"cspell": "^8.0.0",
"dedent": "^1.0.0",
"eslint": "^9.10.0",
"eslint-doc-generator": "^1.7.1",
"eslint-plugin-eslint-plugin": "^6.2.0",
"eslint-plugin-jsdoc": "^50.2.2",
"eslint-plugin-jsonc": "^2.16.0",
"eslint-plugin-markdown": "^5.1.0",
"eslint-plugin-n": "^17.10.2",
"eslint-plugin-package-json": "^0.15.2",
"eslint-plugin-perfectionist": "^3.5.0",
"eslint-plugin-regexp": "^2.6.0",
"eslint-plugin-yml": "^1.14.0",
"husky": "^9.0.0",
"jsonc-eslint-parser": "^2.4.0",
"knip": "^5.0.0",
"lint-staged": "^15.1.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.0.3",
"prettier-plugin-curly": "^0.3.0",
"prettier-plugin-packagejson": "^2.4.6",
"release-it": "^17.0.0",
"sentences-per-line": "^0.2.1",
"should-semantic-release": "^0.3.0",
"tsup": "^8.0.0",
"typescript": "^5.2.2",
"typescript-eslint": "^8.5.0",
"vitest": "^1.0.0"
},
"peerDependencies": {
"@typescript-eslint/parser": ">=6",
"eslint": ">=7",
"typescript": ">=4"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=18"
},
"publishConfig": {
"provenance": true
}
}