forked from streetsidesoftware/vscode-spell-checker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
117 lines (117 loc) · 4.28 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
{
"name": "cspell-lsp",
"description": "Spelling checker for source code",
"displayName": "CSpell LSP",
"icon": "images/SpellCheck.png",
"author": "Jason Dent",
"license": "GPL-3.0-or-later",
"version": "3.0.1",
"private": true,
"main": "./index.js",
"bin": {
"cspell-lsp": "./index.js"
},
"repository": {
"type": "git",
"url": "https://github.com/vlabo/cspell-lsp"
},
"bugs": {
"url": "https://github.com/vlabo/cspell-lsp/issues"
},
"engines": {
"node": ">18.0.0"
},
"type": "commonjs",
"workspaces": [
"docs",
"tools/build-tools",
"packages/utils-logger",
"packages/utils-disposables",
"packages/json-rpc-api",
"packages/__cspell-helper",
"packages/__locale-resolver",
"packages/__utils",
"packages/_server",
"packages/_serverPatternMatcher",
"packages/_settingsViewer",
"packages/_integrationTests"
],
"scripts": {
"build-package-schema": "npm --workspace=code-spell-checker-server run build-schema && build-tools update-package-schema && npm run prettier:fix-schema",
"postinstall": "echo postinstall",
"build": "npm run build:workspaces && npm run build:schema && npm run build:docs",
"build:docs": "npm run gen-docs",
"build:readme": "inject-markdown README.md && prettier -w README.md && inject-markdown docs && prettier -w docs",
"build:schema": "npm run build-package-schema",
"build:workspaces": "npm --workspaces run build",
"clean": "npm --workspaces run clean && shx rm -rf \"packages/*/node_modules\" \"modules/*/node_modules\" \"modules/**/dist\" ",
"build-production": "npm --workspaces run build-production",
"build-release": "npm run build && npm run package-extension",
"gen-docs": "npm --workspace=@internal/docs run gen-docs",
"package-extension": "vsce package -o ./build",
"prettier:check": "prettier \"**/*.{ts,tsx,js,json,md,svelte}\" -c",
"prettier:fix": "npm run prettier:check -- -w",
"prettier:fix-schema": "prettier -w \"**/*.schema.json\"",
"test-vsce-build": "shx mkdir -p temp && vsce package -o ./temp/code-spell-checker.vsix",
"remove-test-files": "shx rm -rf \"packages/*/{out,dist,settingsViewer}/**/*.test.js\"",
"lint": "npm run lint:eslint && npm run prettier:fix",
"lint:eslint": "eslint . --fix --cache",
"lint-docs": "prettier -w \"docs/**/*.{md,markdown,yaml,yml,json,html,htm,js,ts}\"",
"lint-docs-ci": "prettier -c \"docs/**/*.{md,markdown,yaml,yml,json,html,htm,js,ts}\"",
"test-client-integration": "npm --workspace=@internal/integration-tests run test-integration",
"test": "npm --workspaces run test && echo OK",
"update-packages": "npx npm-check-updates --root -ws --target semver -u && npm i",
"preinstall": "npx only-allow npm"
},
"devDependencies": {
"@tsconfig/node18": "^18.2.2",
"@types/jest-when": "^3.5.5",
"@types/node": "^18.18.10",
"@types/vscode": "1.80.0",
"@types/vscode-webview": "^1.57.4",
"@typescript-eslint/eslint-plugin": "^6.11.0",
"@typescript-eslint/parser": "^6.11.0",
"@vitest/coverage-istanbul": "^0.34.6",
"@vscode/vsce": "^2.22.0",
"chokidar-cli": "^3.0.0",
"concurrently": "^8.2.2",
"esbuild": "^0.19.6",
"eslint": "^8.54.0",
"eslint-config-prettier": "^9.0.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-jest": "^27.6.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-simple-import-sort": "^10.0.0",
"eslint-plugin-unicorn": "^49.0.0",
"inject-markdown": "^2.1.0",
"jest": "^29.7.0",
"jest-mock-vscode": "^2.1.0",
"jest-when": "^3.6.0",
"ovsx": "^0.8.3",
"prettier": "^3.1.0",
"prettier-plugin-svelte": "^3.1.0",
"rollup": "^4.5.0",
"rollup-plugin-dts": "^6.1.0",
"shx": "^0.3.4",
"ts-jest": "^29.1.1",
"typescript": "^5.2.2",
"vite": "^4.5.0",
"vitest": "^0.34.6"
},
"dependencies": {
"@cspell/cspell-bundled-dicts": "^8.0.0",
"@cspell/cspell-types": "^8.0.0",
"@types/react": "^17.0.70",
"cspell": "^8.0.0",
"regexp-worker": "^2.0.2"
},
"comment-resolutions": {
"@types/react": "Can be removed after moving to react 18."
},
"resolutions": {
"@types/react": "^17.0.44"
}
}