forked from JoshuaKGoldberg/create-typescript-app
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
114 lines (114 loc) · 3.33 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
{
"name": "create-typescript-app",
"version": "1.29.16",
"description": "A quickstart-friendly TypeScript template with comprehensive formatting, linting, releases, testing, and other great tooling built-in. ✨",
"repository": {
"type": "git",
"url": "https://github.com/JoshuaKGoldberg/create-typescript-app"
},
"license": "MIT",
"author": {
"name": "Josh Goldberg",
"email": "npm@joshuakgoldberg.com"
},
"type": "module",
"main": "./lib/index.js",
"bin": "./bin/index.js",
"files": [
"bin/",
"lib/",
"package.json",
"LICENSE.md",
"README.md"
],
"scripts": {
"build": "tsup",
"create:test": "node script/create-test-e2e.js",
"format": "prettier \"**/*\" --ignore-unknown",
"format:write": "pnpm format --write",
"initialize": "tsx ./src/bin/index.js --mode initialize",
"initialize:test": "node script/initialize-test-e2e.js",
"lint": "eslint . .*js --max-warnings 0",
"lint:knip": "knip",
"lint:md": "markdownlint \"**/*.md\" \".github/**/*.md\" --rules sentences-per-line",
"lint:package-json": "npmPkgJsonLint .",
"lint:packages": "pnpm dedupe --check",
"lint:spelling": "cspell \"**\" \".github/**/*\"",
"migrate:test": "node script/migrate-test-e2e.js",
"prepare": "husky install",
"should-semantic-release": "should-semantic-release --verbose",
"test": "vitest",
"tsc": "tsc"
},
"lint-staged": {
"*": "prettier --ignore-unknown --write"
},
"dependencies": {
"@clack/prompts": "^0.7.0",
"all-contributors-for-repository": "^0.1.0",
"chalk": "^5.3.0",
"execa": "^8.0.1",
"git-remote-origin-url": "^4.0.0",
"git-url-parse": "^13.1.0",
"js-yaml": "^4.1.0",
"npm-user": "^5.0.1",
"octokit": "^3.1.0",
"prettier": "^3.0.2",
"replace-in-file": "^7.0.1",
"title-case": "^3.0.3"
},
"devDependencies": {
"@octokit/request-error": "^5.0.0",
"@types/eslint": "^8.44.2",
"@types/git-url-parse": "^9.0.1",
"@types/js-yaml": "^4.0.5",
"@types/node": "^20.5.6",
"@types/prettier": "^2.7.3",
"@typescript-eslint/eslint-plugin": "^6.4.1",
"@typescript-eslint/parser": "^6.4.1",
"@vitest/coverage-v8": "^0.34.3",
"c8": "^8.0.1",
"console-fail-test": "^0.2.3",
"cspell": "^7.0.1",
"eslint": "^8.48.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-deprecation": "^1.5.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-jsdoc": "^46.5.0",
"eslint-plugin-jsonc": "^2.9.0",
"eslint-plugin-markdown": "^3.0.1",
"eslint-plugin-n": "^16.0.2",
"eslint-plugin-no-only-tests": "^3.1.0",
"eslint-plugin-perfectionist": "^1.5.1",
"eslint-plugin-regexp": "^1.15.0",
"eslint-plugin-vitest": "^0.2.8",
"eslint-plugin-yml": "^1.8.0",
"globby": "^13.2.2",
"husky": "^8.0.3",
"jsonc-eslint-parser": "^2.3.0",
"knip": "2.20.2",
"lint-staged": "^14.0.1",
"markdownlint": "^0.30.0",
"markdownlint-cli": "^0.35.0",
"npm-package-json-lint": "^7.0.0",
"npm-package-json-lint-config-default": "^6.0.0",
"prettier-plugin-curly": "^0.1.2",
"prettier-plugin-packagejson": "^2.4.5",
"release-it": "^16.1.5",
"sentences-per-line": "^0.2.1",
"should-semantic-release": "^0.1.1",
"tsup": "^7.2.0",
"tsx": "^3.12.7",
"typescript": "^5.1.6",
"vitest": "^0.34.3",
"yaml-eslint-parser": "^1.2.2"
},
"packageManager": "pnpm@8.7.0",
"engines": {
"node": ">=18"
},
"publishConfig": {
"provenance": true
}
}