-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
101 lines (101 loc) · 2.58 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
{
"name": "console-fail-test",
"version": "0.5.0",
"description": "Gently fails test runs if the console was used during them. 📢",
"repository": {
"type": "git",
"url": "https://github.com/JoshuaKGoldberg/console-fail-test"
},
"license": "MIT",
"author": {
"name": "JoshuaKGoldberg",
"email": "npm@joshuakgoldberg.com"
},
"type": "module",
"exports": {
".": {
"import": {
"types": "./lib/esm/index.d.ts",
"default": "./lib/esm/index.js"
},
"require": {
"types": "./lib/cjs/index.d.cts",
"default": "./lib/cjs/index.cjs"
}
},
"./setup": "./setup.mjs",
"./setup.cjs": "./setup.cjs",
"./setup.mjs": "./setup.mjs"
},
"main": "./lib/esm/index.js",
"files": [
"lib/",
"LICENSE.md",
"package.json",
"README.md",
"setup.cjs",
"setup.mjs"
],
"scripts": {
"build": "tsup",
"postbuild": "node fixExtensions.js",
"format": "prettier .",
"lint": "eslint . --max-warnings 0",
"lint:knip": "knip",
"lint:md": "markdownlint \"**/*.md\" \".github/**/*.md\" --rules sentences-per-line",
"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"
},
"devDependencies": {
"@eslint-community/eslint-plugin-eslint-comments": "4.4.1",
"@eslint/js": "9.17.0",
"@release-it/conventional-changelog": "9.0.3",
"@types/eslint-plugin-markdown": "2.0.2",
"@types/eslint__js": "8.42.3",
"@types/node": "22.10.2",
"@vitest/coverage-v8": "2.1.8",
"cspell": "8.13.1",
"eslint": "8.57.1",
"eslint-plugin-jsdoc": "50.6.1",
"eslint-plugin-jsonc": "2.18.2",
"eslint-plugin-markdown": "5.1.0",
"eslint-plugin-n": "17.15.1",
"eslint-plugin-package-json": "0.18.0",
"eslint-plugin-perfectionist": "2.11.0",
"eslint-plugin-regexp": "2.7.0",
"eslint-plugin-vitest": "0.5.4",
"eslint-plugin-yml": "1.16.0",
"glob": "11.0.0",
"husky": "9.1.7",
"jsonc-eslint-parser": "2.4.0",
"knip": "5.41.1",
"lint-staged": "15.2.11",
"markdownlint": "0.37.2",
"markdownlint-cli": "0.43.0",
"prettier": "3.4.2",
"prettier-plugin-curly": "0.3.1",
"prettier-plugin-packagejson": "2.5.6",
"prettier-plugin-sh": "0.14.0",
"release-it": "17.10.0",
"sentences-per-line": "0.3.0",
"should-semantic-release": "0.3.0",
"tsup": "8.3.5",
"typescript": "5.7.2",
"typescript-eslint": "7.18.0",
"vitest": "2.1.8"
},
"packageManager": "pnpm@9.15.1",
"engines": {
"node": ">=18"
},
"publishConfig": {
"provenance": true
}
}