-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 1.99 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 1.99 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
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
{
"name": "debug-for-file",
"version": "0.3.0",
"description": "debug() wrapper that creates a string based on your file's path within the package. 🧶",
"repository": {
"type": "git",
"url": "git+https://github.com/JoshuaKGoldberg/debug-for-file.git"
},
"license": "MIT",
"author": {
"name": "Josh Goldberg ✨",
"email": "npm@joshuakgoldberg.com"
},
"type": "module",
"main": "lib/index.js",
"files": [
"lib/"
],
"scripts": {
"build": "tsdown",
"format": "prettier .",
"lint": "eslint . --max-warnings 0",
"lint:knip": "knip",
"lint:packages": "pnpm dedupe --check",
"lint:spelling": "cspell \"**\" \".github/**/*\"",
"prepare": "husky",
"test": "vitest",
"tsc": "tsc"
},
"lint-staged": {
"*": "prettier --ignore-unknown --write"
},
"dependencies": {
"@types/debug": "^4.1.12",
"debug": "^4.4.3",
"read-package-up": "^12.0.0"
},
"devDependencies": {
"@eslint-community/eslint-plugin-eslint-comments": "4.7.0",
"@eslint/js": "10.0.1",
"@eslint/markdown": "8.0.0",
"@release-it/conventional-changelog": "10.0.4",
"@types/node": "25.6.0",
"@vitest/coverage-v8": "4.1.0",
"@vitest/eslint-plugin": "1.6.5",
"console-fail-test": "0.6.1",
"create-typescript-app": "2.60.1",
"cspell": "10.0.0",
"eslint": "10.2.0",
"eslint-plugin-jsdoc": "62.9.0",
"eslint-plugin-jsonc": "3.1.0",
"eslint-plugin-n": "17.24.0",
"eslint-plugin-package-json": "0.88.0",
"eslint-plugin-perfectionist": "5.9.0",
"eslint-plugin-regexp": "3.1.0",
"eslint-plugin-yml": "3.3.0",
"husky": "9.1.7",
"knip": "6.6.0",
"lint-staged": "16.4.0",
"prettier": "3.8.0",
"prettier-plugin-curly": "0.4.1",
"prettier-plugin-packagejson": "3.0.0",
"prettier-plugin-sentences-per-line": "0.2.0",
"prettier-plugin-sh": "0.18.0",
"release-it": "20.0.0",
"tsdown": "0.21.0",
"typescript": "5.9.3",
"typescript-eslint": "8.59.0",
"vitest": "4.1.0"
},
"packageManager": "pnpm@10.33.0",
"engines": {
"node": ">=18.3.0"
},
"publishConfig": {
"provenance": true
}
}