|
19 | 19 | "type": "module", |
20 | 20 | "main": "./dist/extension.js", |
21 | 21 | "scripts": { |
22 | | - "clean": "rimraf dist out", |
23 | | - "tsc": "tsc -p ./", |
24 | | - "type-check": "tsc --noEmit", |
25 | 22 | "build": "rspack build --mode production", |
26 | | - "watch": "rspack build --mode development --watch", |
27 | | - "pretest": "rimraf dist && npm run type-check && npm run build", |
28 | | - "test": "node ./tests/runTest.ts", |
29 | | - "format": "prettier --check . --config package.json --ignore-path .prettierignore", |
30 | | - "format:write": "prettier --write . --config package.json --ignore-path .prettierignore", |
| 23 | + "clean": "rimraf dist out", |
| 24 | + "fix": "run-s format:write lint:fix", |
| 25 | + "format": "prettier --check .", |
| 26 | + "format:write": "prettier --write .", |
31 | 27 | "lint": "eslint", |
32 | 28 | "lint:fix": "eslint --fix", |
33 | | - "fix": "run-s format:write lint:fix", |
| 29 | + "prepackage": "npm run build", |
| 30 | + "package": "vsce package --no-dependencies", |
34 | 31 | "sort": "sort-package-json", |
| 32 | + "pretest": "rimraf dist && npm run type-check && npm run build", |
| 33 | + "test": "node ./tests/runTest.ts", |
| 34 | + "tsc": "tsc -p ./", |
| 35 | + "type-check": "tsc --noEmit", |
35 | 36 | "upgrade": "ncu -u", |
36 | | - "prepackage": "npm run build", |
37 | | - "package": "vsce package --no-dependencies" |
| 37 | + "watch": "rspack build --mode development --watch" |
38 | 38 | }, |
39 | 39 | "contributes": { |
40 | 40 | "commands": [ |
|
54 | 54 | "command": "textlint.showOutputChannel" |
55 | 55 | } |
56 | 56 | ], |
57 | | - "configurationDefaults": { |
58 | | - "files.associations": { |
59 | | - ".textlintrc.json": "jsonc", |
60 | | - ".textlintignore": "ignore" |
61 | | - } |
62 | | - }, |
63 | 57 | "configuration": { |
64 | 58 | "type": "object", |
65 | 59 | "title": "textlint", |
|
126 | 120 | "description": "Target files path that runs lint." |
127 | 121 | } |
128 | 122 | } |
| 123 | + }, |
| 124 | + "configurationDefaults": { |
| 125 | + "files.associations": { |
| 126 | + ".textlintrc.json": "jsonc", |
| 127 | + ".textlintignore": "ignore" |
| 128 | + } |
129 | 129 | } |
130 | 130 | }, |
131 | 131 | "activationEvents": [ |
132 | 132 | "onLanguage" |
133 | 133 | ], |
134 | 134 | "dependencies": { |
135 | | - "minimatch": "^3.0.4", |
| 135 | + "minimatch": "^10.2.5", |
136 | 136 | "vscode-languageclient": "^10.1.0", |
137 | 137 | "vscode-languageserver": "^10.1.0", |
138 | 138 | "vscode-languageserver-textdocument": "^1.0.12", |
139 | 139 | "vscode-uri": "^3.1.0" |
140 | 140 | }, |
141 | 141 | "devDependencies": { |
142 | 142 | "@eslint/js": "^10.0.1", |
143 | | - "@rspack/cli": "^2.1.1", |
144 | | - "@rspack/core": "^2.1.1", |
| 143 | + "@rspack/cli": "^2.1.5", |
| 144 | + "@rspack/core": "^2.1.5", |
145 | 145 | "@textlint/types": "^15.7.1", |
146 | | - "@types/node": "^22.20.0", |
147 | | - "@types/vscode": "^1.100.0", |
148 | | - "@vscode/test-electron": "^3.0.0", |
| 146 | + "@types/node": "^26.1.1", |
| 147 | + "@types/vscode": "^1.125.0", |
| 148 | + "@vscode/test-electron": "^3.1.0", |
149 | 149 | "@vscode/vsce": "^3.9.2", |
150 | | - "eslint": "^10.5.0", |
| 150 | + "eslint": "^10.8.0", |
151 | 151 | "eslint-config-prettier": "^10.1.8", |
152 | | - "merge-options": "^3.0.4", |
153 | | - "npm-check-updates": "^11.8.5", |
154 | | - "npm-run-all": "^4.1.5", |
155 | | - "prettier": "^2.4.1", |
156 | | - "rimraf": "^3.0.2", |
157 | | - "sort-package-json": "^1.52.0", |
| 152 | + "npm-check-updates": "^22.2.9", |
| 153 | + "npm-run-all2": "^9.0.2", |
| 154 | + "prettier": "^3.9.6", |
| 155 | + "rimraf": "^6.1.3", |
| 156 | + "sort-package-json": "^4.0.0", |
158 | 157 | "typescript": "~6.0.3", |
159 | | - "typescript-eslint": "^8.62.0" |
| 158 | + "typescript-eslint": "^8.65.0" |
160 | 159 | }, |
| 160 | + "packageManager": "npm@12.0.1+sha512.2f94fd8bf600416416a934bfc59c4991e8bff7372ef7d842784e2a8b8d48c81555ee645069ddea73625fb8e92dc261feab0188fd5dab6c22fefd46316f5f9140", |
161 | 161 | "engines": { |
162 | 162 | "node": ">=24.0.0 <25.0.0", |
163 | 163 | "vscode": "^1.100.0" |
|
166 | 166 | "galleryBanner": { |
167 | 167 | "color": "#5acbe3", |
168 | 168 | "theme": "light" |
169 | | - }, |
170 | | - "prettier": { |
171 | | - "printWidth": 120 |
172 | 169 | } |
173 | 170 | } |
0 commit comments