-
-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
120 lines (120 loc) · 2.97 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
{
"name": "eslint-plugin-command",
"type": "module",
"version": "3.0.0",
"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.mts",
"default": "./dist/index.mjs"
},
"./config": {
"types": "./dist/config.d.mts",
"default": "./dist/config.mjs"
},
"./commands": {
"types": "./dist/commands.d.mts",
"default": "./dist/commands.mjs"
},
"./types": {
"types": "./dist/types.d.mts",
"default": "./dist/types.mjs"
}
},
"main": "./dist/index.mjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.mts",
"typesVersions": {
"*": {
"*": [
"./dist/index.d.mts",
"./dist/*"
],
"./config": [
"./dist/config.d.mts"
],
"./commands": [
"./dist/commands.d.mts"
],
"./types": [
"./dist/types.d.mts"
]
}
},
"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.50.0"
},
"devDependencies": {
"@antfu/eslint-config": "^4.0.0",
"@antfu/ni": "^23.2.0",
"@antfu/utils": "^8.1.0",
"@eslint/config-inspector": "^1.0.0",
"@types/lodash.merge": "^4.6.9",
"@types/node": "^22.10.10",
"@types/semver": "^7.5.8",
"@typescript-eslint/rule-tester": "^8.21.0",
"@typescript-eslint/typescript-estree": "^8.21.0",
"@typescript-eslint/utils": "^8.21.0",
"@vitest/ui": "^3.0.4",
"bumpp": "^9.10.2",
"eslint": "^9.19.0",
"eslint-define-config": "^2.1.0",
"eslint-vitest-rule-tester": "^1.1.0",
"esno": "^4.8.0",
"fast-glob": "^3.3.3",
"lint-staged": "^15.4.2",
"lodash.merge": "4.6.2",
"pnpm": "^9.15.4",
"rimraf": "^6.0.1",
"semver": "^7.6.3",
"simple-git-hooks": "^2.11.1",
"tsup": "^8.3.5",
"typescript": "^5.7.3",
"unbuild": "^3.3.1",
"vite": "^6.0.11",
"vitest": "^3.0.4"
},
"resolutions": {
"eslint-plugin-command": "workspace:*"
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged"
},
"lint-staged": {
"*": "eslint --fix"
}
}