forked from antfu/eslint-plugin-command
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
124 lines (124 loc) · 3.1 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
{
"name": "eslint-plugin-command",
"type": "module",
"version": "0.2.5",
"packageManager": "pnpm@9.10.0",
"description": "Comment-as-command for one-off codemod with ESLint",
"author": "Anthony Fu <anthonyfu117@hotmail.com>",
"license": "MIT",
"funding": "https://github.com/sponsors/antfu",
"homepage": "https://github.com/antfu/eslint-plugin-command#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/antfu/eslint-plugin-command.git"
},
"bugs": "https://github.com/antfu/eslint-plugin-command/issues",
"keywords": [
"eslint-plugin",
"codemod"
],
"sideEffects": false,
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
},
"./config": {
"types": "./dist/config.d.ts",
"import": "./dist/config.mjs",
"require": "./dist/config.cjs"
},
"./commands": {
"types": "./dist/commands.d.ts",
"import": "./dist/commands.mjs",
"require": "./dist/commands.cjs"
},
"./types": {
"types": "./dist/types.d.ts",
"import": "./dist/types.mjs",
"require": "./dist/types.cjs"
}
},
"main": "./dist/index.mjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"typesVersions": {
"*": {
"*": [
"./dist/index.d.ts",
"./dist/*"
],
"./config": [
"./dist/config.d.ts"
],
"./commands": [
"./dist/commands.d.ts"
],
"./types": [
"./dist/types.d.ts"
]
}
},
"files": [
"dist"
],
"scripts": {
"build": "unbuild",
"dev": "unbuild --stub",
"lint": "unbuild && eslint .",
"prepublishOnly": "nr build",
"release": "bumpp && npm publish",
"start": "esno src/index.ts",
"test": "vitest",
"docs": "nr -C docs docs:dev",
"docs:build": "nr -C docs docs:build",
"typecheck": "tsc --noEmit",
"prepare": "simple-git-hooks"
},
"peerDependencies": {
"eslint": "*"
},
"dependencies": {
"@es-joy/jsdoccomment": "^0.48.0"
},
"devDependencies": {
"@antfu/eslint-config": "^3.6.0",
"@antfu/ni": "^0.23.0",
"@antfu/utils": "^0.7.10",
"@eslint/config-inspector": "^0.5.4",
"@types/lodash.merge": "^4.6.9",
"@types/node": "^22.5.4",
"@types/semver": "^7.5.8",
"@typescript-eslint/rule-tester": "^8.5.0",
"@typescript-eslint/typescript-estree": "^8.5.0",
"@typescript-eslint/utils": "^8.5.0",
"@vitest/ui": "^2.1.0",
"bumpp": "^9.5.2",
"eslint": "^9.10.0",
"eslint-define-config": "^2.1.0",
"eslint-vitest-rule-tester": "^0.6.1",
"esno": "^4.7.0",
"fast-glob": "^3.3.2",
"lint-staged": "^15.2.10",
"lodash.merge": "4.6.2",
"pnpm": "^9.10.0",
"rimraf": "^6.0.1",
"semver": "^7.6.3",
"simple-git-hooks": "^2.11.1",
"tsup": "^8.2.4",
"typescript": "^5.6.2",
"unbuild": "^2.0.0",
"vite": "^5.4.5",
"vitest": "^2.1.0"
},
"resolutions": {
"eslint-plugin-command": "workspace:*"
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged"
},
"lint-staged": {
"*": "eslint --fix"
}
}