-
-
Notifications
You must be signed in to change notification settings - Fork 75
/
package.json
126 lines (126 loc) · 3.59 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
{
"name": "create-typescript-app",
"version": "1.80.0",
"description": "Quickstart-friendly TypeScript template with comprehensive, configurable, opinionated tooling. ❤️🔥",
"repository": {
"type": "git",
"url": "https://github.com/JoshuaKGoldberg/create-typescript-app"
},
"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 .",
"initialize": "pnpm build --no-dts && tsx ./bin/index.js --mode initialize",
"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",
"test:create": "npx tsx script/create-test-e2e.ts",
"test:initialize": "npx tsx script/initialize-test-e2e.ts",
"test:migrate": "vitest run -r script/",
"tsc": "tsc"
},
"lint-staged": {
"*": "prettier --ignore-unknown --write"
},
"dependencies": {
"@clack/prompts": "^0.9.0",
"@prettier/sync": "^0.5.2",
"chalk": "^5.4.1",
"create": "0.1.0-alpha.8",
"cspell-populate-words": "^0.3.0",
"execa": "^9.5.2",
"git-remote-origin-url": "^4.0.0",
"git-url-parse": "^16.0.0",
"html-to-text": "^9.0.5",
"image-size": "^1.2.0",
"input-from-file": "0.1.0-alpha.4",
"input-from-file-json": "0.1.0-alpha.4",
"input-from-script": "0.1.0-alpha.4",
"js-yaml": "^4.1.0",
"lazy-value": "^3.0.0",
"npm-user": "^6.1.1",
"object-strings-deep": "^0.1.1",
"octokit": "^4.0.2",
"octokit-from-auth": "^0.3.0",
"parse-author": "^2.0.0",
"parse-package-name": "^1.0.0",
"populate-all-contributors-for-repository": "^0.1.2",
"prettier": "^3.4.2",
"remove-undefined-objects": "^5.0.0",
"replace-in-file": "^8.3.0",
"rimraf": "^6.0.1",
"set-github-repository-labels": "^0.1.0",
"sort-package-json": "^2.12.0",
"title-case": "^4.3.2",
"zod": "^3.24.1",
"zod-validation-error": "^3.4.0"
},
"devDependencies": {
"@eslint-community/eslint-plugin-eslint-comments": "4.4.1",
"@eslint/js": "9.17.0",
"@octokit/request-error": "6.1.5",
"@release-it/conventional-changelog": "9.0.3",
"@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/node": "22.10.2",
"@types/parse-author": "2.0.3",
"@vitest/coverage-v8": "2.1.8",
"@vitest/eslint-plugin": "1.1.20",
"all-contributors-cli": "6.26.1",
"c8": "10.1.3",
"console-fail-test": "0.5.0",
"create-testers": "0.1.0-alpha.8",
"cspell": "8.17.1",
"eslint": "9.17.0",
"eslint-plugin-jsdoc": "50.6.1",
"eslint-plugin-jsonc": "2.18.2",
"eslint-plugin-markdown": "5.1.0",
"eslint-plugin-n": "17.15.1",
"eslint-plugin-package-json": "0.18.0",
"eslint-plugin-perfectionist": "4.4.0",
"eslint-plugin-regexp": "2.7.0",
"eslint-plugin-yml": "1.16.0",
"globby": "14.0.2",
"husky": "9.1.7",
"knip": "5.41.1",
"lint-staged": "15.2.11",
"markdownlint": "0.37.2",
"markdownlint-cli": "0.43.0",
"prettier-plugin-curly": "0.3.1",
"prettier-plugin-packagejson": "2.5.6",
"prettier-plugin-sh": "0.14.0",
"release-it": "17.10.0",
"sentences-per-line": "0.3.0",
"tsup": "8.3.5",
"tsx": "4.19.2",
"typescript": "5.7.2",
"typescript-eslint": "8.18.1",
"vitest": "2.1.8"
},
"engines": {
"node": ">=18.3.0"
},
"publishConfig": {
"provenance": true
}
}