-
-
Notifications
You must be signed in to change notification settings - Fork 79
/
Copy pathpackage.json
128 lines (128 loc) · 3.46 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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
{
"name": "create-typescript-app",
"version": "2.29.3",
"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": "[email protected]"
},
"type": "module",
"main": "lib/index.js",
"bin": "bin/index.js",
"files": [
"LICENSE.md",
"README.md",
"bin/index.js",
"lib/",
"package.json"
],
"scripts": {
"build": "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",
"tsc": "tsc"
},
"lint-staged": {
"*": "prettier --ignore-unknown --write"
},
"dependencies": {
"bingo": "^0.5.14",
"bingo-fs": "^0.5.5",
"bingo-stratum": "^0.5.10",
"cached-factory": "^0.1.0",
"cspell-populate-words": "^0.3.0",
"execa": "^9.5.2",
"git-url-parse": "^16.0.1",
"github-default-labels": "^0.1.0",
"html-to-text": "^9.0.5",
"image-size": "^1.2.0",
"input-from-file": "^0.5.4",
"input-from-file-json": "^0.5.4",
"input-from-script": "^0.5.4",
"js-yaml": "^4.1.0",
"json5": "^2.2.3",
"lazy-value": "^3.0.0",
"lodash": "^4.17.21",
"marked": "^15.0.7",
"npm-user": "^6.1.1",
"object-strings-deep": "^0.1.1",
"parse-author": "^2.0.0",
"parse-package-name": "^1.0.0",
"remove-dependencies": "^0.1.1",
"remove-undefined-objects": "^6.0.0",
"semver": "^7.7.1",
"set-github-repository-labels": "^0.2.0",
"sort-keys": "^5.1.0",
"sort-package-json": "^3.0.0",
"title-case": "^4.3.2",
"trash-cli": "^6.0.0",
"zod": "^3.24.2",
"zod-package-json": "^1.1.0",
"zod-tsconfig": "^0.2.0"
},
"devDependencies": {
"@eslint-community/eslint-plugin-eslint-comments": "4.4.1",
"@eslint/js": "9.22.0",
"@prettier/sync": "0.5.3",
"@release-it/conventional-changelog": "10.0.0",
"@types/eslint-plugin-markdown": "2.0.2",
"@types/git-url-parse": "9.0.3",
"@types/html-to-text": "9.0.4",
"@types/js-yaml": "4.0.9",
"@types/lodash": "4.17.16",
"@types/node": "22.13.10",
"@types/parse-author": "2.0.3",
"@types/semver": "7.7.0",
"@vitest/coverage-v8": "3.0.9",
"@vitest/eslint-plugin": "1.1.38",
"all-contributors-cli": "6.26.1",
"bingo-requests": "0.5.5",
"bingo-stratum-testers": "0.5.8",
"bingo-testers": "0.5.7",
"console-fail-test": "0.5.0",
"cspell": "8.17.5",
"eslint": "9.22.0",
"eslint-plugin-jsdoc": "50.6.8",
"eslint-plugin-jsonc": "2.20.0",
"eslint-plugin-markdown": "5.1.0",
"eslint-plugin-n": "17.16.2",
"eslint-plugin-package-json": "0.29.0",
"eslint-plugin-perfectionist": "4.10.1",
"eslint-plugin-regexp": "2.7.0",
"eslint-plugin-yml": "1.17.0",
"husky": "9.1.7",
"knip": "5.46.0",
"lint-staged": "15.5.0",
"lodash": "4.17.21",
"markdownlint": "0.37.4",
"markdownlint-cli": "0.44.0",
"prettier": "3.5.3",
"prettier-plugin-curly": "0.3.1",
"prettier-plugin-packagejson": "2.5.10",
"prettier-plugin-sh": "0.15.0",
"release-it": "18.1.2",
"sentences-per-line": "0.3.0",
"tsup": "8.4.0",
"typescript": "5.8.2",
"typescript-eslint": "8.26.1",
"vitest": "3.0.9"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=18.3.0"
},
"publishConfig": {
"provenance": true
}
}