generated from u3u/ts-lib-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
100 lines (100 loc) · 2.37 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
{
"name": "eslint-plugin-arrow-return-style",
"version": "1.3.1",
"description": "Enforce arrow function return style and automatically fix it",
"keywords": [
"arrow-body-style",
"arrow-return-style",
"arrow-function"
],
"repository": {
"url": "https://github.com/u3u/eslint-plugin-arrow-return-style.git"
},
"license": "MIT",
"author": "u3u <[email protected]> (https://github.com/u3u)",
"sideEffects": false,
"exports": {
".": {
"import": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
},
"require": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
}
},
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"typesVersions": {
"*": {
"*": [
"./dist/*",
"./dist/index.d.ts"
]
}
},
"files": [
"dist"
],
"scripts": {
"build": "tsup && fix-tsup-cjs",
"format": "prettier --write .",
"lint": "eslint --fix .",
"prepare": "pnpm build",
"test": "vitest --ui --coverage.enabled --coverage.all=false",
"update:eslint-docs": "pnpm build && eslint-doc-generator"
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged --concurrent false"
},
"lint-staged": {
"*.{js,cjs,mjs,jsx,ts,tsx,md}": [
"eslint --fix"
],
"*": [
"prettier --write --ignore-unknown"
]
},
"dependencies": {
"@typescript-eslint/utils": "^7.18.0",
"scule": "^1.3.0"
},
"devDependencies": {
"@total-typescript/ts-reset": "^0.6.1",
"@tsconfig/node20": "^20.1.4",
"@types/node": "^20.17.14",
"@typescript-eslint/rule-tester": "^7.18.0",
"@u3u/eslint-config": "^2.15.2",
"@u3u/prettier-config": "^5.1.0",
"@vitest/coverage-v8": "^2.1.8",
"@vitest/ui": "^2.1.8",
"dedent": "^1.5.3",
"eslint": "^8.57.1",
"eslint-doc-generator": "^1.7.1",
"eslint-plugin-arrow-return-style": "link:",
"fix-tsup-cjs": "^1.2.0",
"lint-staged": "^15.4.1",
"prettier": "^3.4.2",
"simple-git-hooks": "^2.11.1",
"tsup": "^8.3.5",
"typescript": "^5.7.3",
"vitest": "^2.1.8"
},
"peerDependencies": {
"eslint": ">=8.0.0"
},
"packageManager": "[email protected]",
"publishConfig": {
"access": "public"
},
"pnpm": {
"updateConfig": {
"ignoreDependencies": [
"@types/node"
]
}
}
}