forked from antfu/eslint-plugin-command
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
124 lines (124 loc) · 3.11 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.7",
"packageManager": "[email protected]",
"description": "Comment-as-command for one-off codemod with ESLint",
"author": "Anthony Fu <[email protected]>",
"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.49.0"
},
"devDependencies": {
"@antfu/eslint-config": "^3.12.0",
"@antfu/ni": "^0.23.1",
"@antfu/utils": "^0.7.10",
"@eslint/config-inspector": "^0.6.0",
"@types/lodash.merge": "^4.6.9",
"@types/node": "^22.10.2",
"@types/semver": "^7.5.8",
"@typescript-eslint/rule-tester": "^8.18.1",
"@typescript-eslint/typescript-estree": "^8.18.1",
"@typescript-eslint/utils": "^8.18.1",
"@vitest/ui": "^2.1.8",
"bumpp": "^9.9.1",
"eslint": "^9.17.0",
"eslint-define-config": "^2.1.0",
"eslint-vitest-rule-tester": "^0.7.1",
"esno": "^4.8.0",
"fast-glob": "^3.3.2",
"lint-staged": "^15.2.11",
"lodash.merge": "4.6.2",
"pnpm": "^9.15.0",
"rimraf": "^6.0.1",
"semver": "^7.6.3",
"simple-git-hooks": "^2.11.1",
"tsup": "^8.3.5",
"typescript": "^5.7.2",
"unbuild": "^3.0.1",
"vite": "^6.0.3",
"vitest": "^2.1.8"
},
"resolutions": {
"eslint-plugin-command": "workspace:*"
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged"
},
"lint-staged": {
"*": "eslint --fix"
}
}