-
Notifications
You must be signed in to change notification settings - Fork 39
/
package.json
96 lines (96 loc) · 2.56 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
{
"name": "typestat",
"version": "0.7.3",
"description": "Converts JavaScript to TypeScript and TypeScript to better TypeScript. 🧫",
"repository": {
"type": "git",
"url": "https://github.com/JoshuaKGoldberg/TypeStat"
},
"license": "MIT",
"author": {
"name": "JoshuaKGoldberg",
"email": "[email protected]"
},
"type": "module",
"main": "./lib/index.js",
"files": [
"lib/",
"package.json",
"LICENSE.md",
"README.md"
],
"scripts": {
"build": "NODE_OPTIONS='--max-old-space-size=16384' tsup",
"format": "prettier .",
"lint": "eslint . .*js --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",
"test": "vitest --dir src",
"test:mutation": "vitest run --dir test",
"tsc": "tsc"
},
"lint-staged": {
"*": "prettier --ignore-unknown --write"
},
"dependencies": {
"@phenomnomnominal/tsquery": "^6.1.3",
"automutate": "^0.9.0",
"builtin-modules": "^4.0.0",
"chalk": "^5.3.0",
"commander": "^12.0.0",
"enquirer": "^2.4.1",
"glob": "^11.0.0",
"minimatch": "^10.0.0",
"strip-ansi": "^7.1.0",
"ts-api-utils": "^1.3.0"
},
"devDependencies": {
"@types/eslint": "^8.56.6",
"@types/glob": "8.1.0",
"@types/minimatch": "^5.1.2",
"@types/node": "^22.0.0",
"@types/prop-types": "15.7.13",
"@types/react": "18.3.12",
"@typescript-eslint/eslint-plugin": "^7.3.1",
"@typescript-eslint/parser": "^8.0.0",
"@vitest/coverage-v8": "^1.4.0",
"console-fail-test": "^0.5.0",
"cspell": "^8.6.0",
"eslint": "8.57.1",
"eslint-plugin-deprecation": "3.0.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-jsdoc": "^50.0.0",
"eslint-plugin-jsonc": "^2.14.1",
"eslint-plugin-markdown": "^4.0.1",
"eslint-plugin-n": "^17.0.0",
"eslint-plugin-package-json": "^0.15.0",
"eslint-plugin-perfectionist": "^2.7.0",
"eslint-plugin-regexp": "^2.3.0",
"eslint-plugin-vitest": "^0.4.0",
"eslint-plugin-yml": "^1.13.2",
"husky": "9.1.6",
"jsonc-eslint-parser": "^2.4.0",
"knip": "^5.2.2",
"lint-staged": "15.2.10",
"markdownlint": "0.36.1",
"markdownlint-cli": "0.42.0",
"prettier": "3.3.3",
"prettier-plugin-curly": "^0.3.0",
"prettier-plugin-packagejson": "^2.4.12",
"sentences-per-line": "0.2.1",
"tsup": "^8.0.2",
"typescript": "^5.4.3",
"vitest": "^1.4.0",
"yaml-eslint-parser": "^1.2.2"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=18"
},
"publishConfig": {
"provenance": true
}
}