forked from JoshuaKGoldberg/create-typescript-app
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
89 lines (89 loc) · 2.78 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
{
"name": "template-typescript-node-package",
"version": "1.27.74",
"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/template-typescript-node-package"
},
"license": "MIT",
"author": "Josh Goldberg <[email protected]>",
"type": "module",
"main": "./lib/index.js",
"files": [
"lib/",
"package.json",
"LICENSE.md",
"README.md"
],
"scripts": {
"build": "tsc",
"format": "prettier \"**/*\" --ignore-unknown",
"format:write": "pnpm format --write",
"lint": "eslint . --max-warnings 0 --report-unused-disable-directives",
"lint:knip": "knip",
"lint:md": "markdownlint \"**/*.md\" \".github/**/*.md\" --rules sentences-per-line",
"lint:package": "npmPkgJsonLint .",
"lint:packages": "pnpm dedupe --check",
"lint:spelling": "cspell \"**\" \".github/**/*\"",
"prepare": "husky install",
"setup": "node script/setup.js",
"setup:test": "node script/setup-test-e2e.js",
"should-semantic-release": "should-semantic-release --verbose",
"test": "vitest"
},
"lint-staged": {
"*": "prettier --ignore-unknown --write"
},
"devDependencies": {
"@clack/prompts": "^0.6.3",
"@types/eslint": "^8.21.1",
"@typescript-eslint/eslint-plugin": "^5.48.2",
"@typescript-eslint/parser": "^5.48.2",
"@vitest/coverage-istanbul": "^0.31.0",
"all-contributors-cli": "^6.24.0",
"chalk": "^5.2.0",
"console-fail-test": "^0.2.1",
"cspell": "^6.19.2",
"eslint": "^8.32.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-deprecation": "^1.3.3",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsdoc": "^43.0.0",
"eslint-plugin-jsonc": "^2.6.0",
"eslint-plugin-markdown": "^3.0.0",
"eslint-plugin-no-only-tests": "^3.1.0",
"eslint-plugin-regexp": "^1.12.0",
"eslint-plugin-simple-import-sort": "^10.0.0",
"eslint-plugin-typescript-sort-keys": "^2.1.0",
"eslint-plugin-vitest": "^0.1.0",
"eslint-plugin-yml": "^1.5.0",
"execa": "^7.1.1",
"globby": "^13.1.3",
"husky": "^8.0.3",
"jsonc-eslint-parser": "^2.1.0",
"knip": "2.10.3",
"lint-staged": "^13.1.0",
"markdownlint": "^0.28.0",
"markdownlint-cli": "^0.33.0",
"npm-package-json-lint": "^6.4.0",
"npm-package-json-lint-config-default": "^5.0.0",
"npm-user": "^5.0.1",
"octokit": "^2.0.11",
"prettier": "^2.8.3",
"prettier-plugin-packagejson": "^2.4.2",
"release-it": "^15.6.0",
"replace-in-file": "^6.3.5",
"sentences-per-line": "^0.2.1",
"should-semantic-release": "^0.1.0",
"title-case": "^3.0.3",
"typescript": "^5.0.0",
"vitest": "^0.31.0",
"yaml-eslint-parser": "^1.2.0"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=18"
}
}