generated from JoshuaKGoldberg/create-typescript-app
-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
99 lines (99 loc) · 2.54 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
{
"name": "prettier-plugin-curly",
"version": "0.3.1",
"description": "Prettier plugin to enforce consistent brace style for all control statements. 🥌",
"repository": {
"type": "git",
"url": "https://github.com/JoshuaKGoldberg/prettier-plugin-curly"
},
"license": "MIT",
"author": {
"name": "JoshuaKGoldberg",
"email": "[email protected]"
},
"exports": {
".": {
"import": {
"types": "./lib/index.d.mts",
"default": "./lib/index.mjs"
},
"require": {
"types": "./lib/index.d.ts",
"default": "./lib/index.js"
}
}
},
"main": "./lib/index.js",
"files": [
"lib/",
"package.json",
"LICENSE.md",
"README.md"
],
"scripts": {
"build": "tsup",
"format": "prettier \"**/*\" --ignore-unknown",
"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",
"should-semantic-release": "should-semantic-release --verbose",
"test": "vitest",
"tsc": "tsc"
},
"lint-staged": {
"*": "prettier --ignore-unknown --write"
},
"dependencies": {
"@babel/generator": "^7.25.7",
"@babel/parser": "^7.25.8",
"@babel/traverse": "^7.25.7"
},
"devDependencies": {
"@babel/types": "^7.25.8",
"@eslint-community/eslint-plugin-eslint-comments": "^4.4.0",
"@eslint/js": "^9.12.0",
"@release-it/conventional-changelog": "^9.0.0",
"@types/babel__generator": "^7.6.8",
"@types/babel__traverse": "^7.20.6",
"@vitest/coverage-v8": "^2.1.2",
"@vitest/eslint-plugin": "^1.1.7",
"console-fail-test": "^0.5.0",
"cspell": "^8.14.4",
"eslint": "^9.12.0",
"eslint-plugin-jsdoc": "^50.3.1",
"eslint-plugin-jsonc": "^2.16.0",
"eslint-plugin-markdown": "^5.1.0",
"eslint-plugin-n": "^17.11.1",
"eslint-plugin-package-json": "^0.15.3",
"eslint-plugin-perfectionist": "^3.8.0",
"eslint-plugin-regexp": "^2.6.0",
"eslint-plugin-yml": "^1.14.0",
"husky": "^9.1.6",
"knip": "^5.33.3",
"lint-staged": "^15.2.10",
"markdownlint": "^0.35.0",
"markdownlint-cli": "^0.42.0",
"prettier": "^3.3.3",
"prettier-plugin-packagejson": "^2.5.3",
"release-it": "^17.8.2",
"sentences-per-line": "^0.2.1",
"should-semantic-release": "^0.3.0",
"tsup": "^8.3.0",
"typescript": "^5.6.3",
"typescript-eslint": "^8.8.1",
"vitest": "^2.1.2"
},
"peerDependencies": {
"prettier": "^2 || ^3"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=18"
},
"publishConfig": {
"provenance": true
}
}