-
Notifications
You must be signed in to change notification settings - Fork 42
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.32 KB
/
package.json
File metadata and controls
89 lines (89 loc) · 2.32 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
79
80
81
82
83
84
85
86
87
88
89
{
"name": "typestat",
"version": "0.8.17",
"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": "npm@joshuakgoldberg.com"
},
"type": "module",
"main": "./lib/index.js",
"bin": {
"typestat": "bin/typestat.mjs"
},
"files": [
"bin/typestat.mjs",
"lib/",
"package.json",
"LICENSE.md",
"README.md"
],
"scripts": {
"build": "NODE_OPTIONS='--max-old-space-size=16384' tsup",
"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",
"test": "vitest --dir src",
"test:mutation": "vitest run --dir test",
"tsc": "tsc"
},
"lint-staged": {
"*": "prettier --ignore-unknown --write"
},
"dependencies": {
"@phenomnomnominal/tsquery": "6.2.0",
"automutate": "0.9.0",
"chalk": "5.6.2",
"commander": "14.0.3",
"enquirer": "2.4.1",
"ts-api-utils": "2.5.0"
},
"devDependencies": {
"@eslint-community/eslint-plugin-eslint-comments": "4.7.1",
"@eslint/js": "10.0.1",
"@eslint/markdown": "8.0.1",
"@release-it/conventional-changelog": "11.0.0",
"@types/node": "22.19.17",
"@types/prop-types": "15.7.15",
"@types/react": "19.2.14",
"@vitest/coverage-v8": "4.1.5",
"@vitest/eslint-plugin": "1.6.16",
"console-fail-test": "0.6.1",
"cspell": "9.8.0",
"eslint": "10.3.0",
"eslint-plugin-jsdoc": "62.9.0",
"eslint-plugin-jsonc": "3.1.2",
"eslint-plugin-n": "17.16.1",
"eslint-plugin-package-json": "0.26.0",
"eslint-plugin-perfectionist": "5.9.0",
"eslint-plugin-regexp": "3.1.0",
"eslint-plugin-yml": "3.3.2",
"husky": "9.1.7",
"knip": "6.9.0",
"lint-staged": "16.4.0",
"markdownlint": "0.40.0",
"markdownlint-cli": "0.48.0",
"prettier": "3.8.3",
"prettier-plugin-curly": "0.4.1",
"prettier-plugin-packagejson": "3.0.2",
"release-it": "20.0.1",
"sentences-per-line": "0.3.0",
"tsup": "8.5.1",
"typescript": "6.0.3",
"typescript-eslint": "8.59.1",
"vitest": "4.1.5"
},
"packageManager": "pnpm@10.33.2",
"engines": {
"node": ">=22.22"
}
}