-
-
Notifications
You must be signed in to change notification settings - Fork 88
Expand file tree
/
Copy pathpackage.json
More file actions
116 lines (116 loc) · 3.18 KB
/
package.json
File metadata and controls
116 lines (116 loc) · 3.18 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
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
{
"name": "create-typescript-app",
"version": "2.60.1",
"description": "Quickstart-friendly TypeScript template with comprehensive, configurable, opinionated tooling. 🎁",
"repository": {
"type": "git",
"url": "git+https://github.com/JoshuaKGoldberg/create-typescript-app.git"
},
"license": "MIT",
"author": {
"name": "Josh Goldberg ✨",
"email": "npm@joshuakgoldberg.com"
},
"type": "module",
"main": "lib/index.js",
"bin": "bin/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": {
"@typescript-eslint/typescript-estree": "^8.48.1",
"bingo": "^0.9.2",
"bingo-fs": "^0.5.6",
"bingo-stratum": "^0.5.13",
"cached-factory": "^0.1.0",
"cspell-populate-words": "^0.3.1",
"execa": "^9.6.1",
"git-url-parse": "^16.1.0",
"github-default-labels": "^0.1.1",
"html-to-text": "^9.0.5",
"image-size": "^2.0.2",
"input-from-file": "^0.5.5",
"input-from-file-json": "^0.5.5",
"input-from-script": "^0.5.5",
"js-yaml": "^4.1.1",
"json5": "^2.2.3",
"lazy-value": "^3.0.0",
"lodash": "^4.17.21",
"marked": "^17.0.1",
"npm-user": "^6.1.1",
"object-strings-deep": "^0.1.2",
"parse-author": "^2.0.0",
"parse-package-name": "^1.0.0",
"remove-dependencies": "^0.1.1",
"remove-undefined-objects": "^7.0.0",
"semver": "^7.7.3",
"set-github-repository-labels": "^0.2.2",
"sort-keys": "^6.0.0",
"sort-package-json": "^3.5.0",
"title-case": "^4.3.2",
"trash-cli": "^7.0.0",
"zod": "^3.25.76",
"zod-package-json": "^1.2.0",
"zod-tsconfig": "^0.2.0"
},
"devDependencies": {
"@eslint-community/eslint-plugin-eslint-comments": "4.6.0",
"@eslint/js": "9.39.1",
"@eslint/markdown": "7.5.1",
"@prettier/sync": "0.6.1",
"@release-it/conventional-changelog": "10.0.2",
"@types/html-to-text": "9.0.4",
"@types/js-yaml": "4.0.9",
"@types/lodash": "4.17.21",
"@types/node": "24.10.1",
"@types/parse-author": "2.0.3",
"@types/semver": "7.7.1",
"@vitest/coverage-v8": "4.0.15",
"@vitest/eslint-plugin": "1.5.1",
"all-contributors-cli": "6.26.1",
"bingo-requests": "0.5.6",
"bingo-stratum-testers": "0.5.10",
"bingo-testers": "0.5.8",
"console-fail-test": "0.6.1",
"cspell": "9.4.0",
"eslint": "9.39.1",
"eslint-plugin-jsdoc": "62.2.0",
"eslint-plugin-jsonc": "2.21.0",
"eslint-plugin-n": "17.23.1",
"eslint-plugin-package-json": "0.88.0",
"eslint-plugin-perfectionist": "5.3.0",
"eslint-plugin-regexp": "2.10.0",
"eslint-plugin-yml": "3.0.0",
"husky": "9.1.7",
"knip": "5.71.0",
"lint-staged": "16.2.7",
"prettier": "3.7.3",
"prettier-plugin-curly": "0.4.1",
"prettier-plugin-packagejson": "2.5.20",
"prettier-plugin-sentences-per-line": "0.2.0",
"prettier-plugin-sh": "0.18.0",
"release-it": "19.0.6",
"tsdown": "0.16.8",
"typescript": "5.9.3",
"typescript-eslint": "8.48.1",
"vitest": "4.0.15"
},
"packageManager": "pnpm@10.28.0",
"engines": {
"node": ">=20.19.0"
}
}