-
-
Notifications
You must be signed in to change notification settings - Fork 42
/
Copy pathpackage.json
92 lines (92 loc) · 2.57 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
{
"name": "code-spell-checker-polish",
"description": "Polish dictionary extension for VS Code.",
"version": "2.1.3",
"displayName": "Polish - Code Spell Checker",
"icon": "images/SpellCheck.png",
"private": true,
"publisher": "streetsidesoftware",
"license": "GPL-3.0-or-later",
"type": "commonjs",
"engines": {
"vscode": "^1.67.0"
},
"sponsor": {
"url": "https://github.com/sponsors/streetsidesoftware"
},
"extensionKind": [
"workspace"
],
"categories": [
"Linters",
"Other"
],
"keywords": [
"Polish",
"VS Code Extension",
"Spelling Checker",
"dictionary",
"spelling"
],
"activationEvents": [
"onStartupFinished"
],
"qna": "marketplace",
"main": "./out/extension.js",
"capabilities": {
"virtualWorkspaces": true,
"untrustedWorkspaces": {
"supported": true
}
},
"contributes": {
"commands": [
{
"command": "cSpellExt_polish.enable",
"title": "Enable Polish Spell Checker Dictionary"
},
{
"command": "cSpellExt_polish.disable",
"title": "Disable Polish Spell Checker Dictionary"
},
{
"command": "cSpellExt_polish.enableWorkspace",
"title": "Enable Polish Spell Checker Dictionary in Workspace"
},
{
"command": "cSpellExt_polish.disableWorkspace",
"title": "Disable Polish Spell Checker Dictionary in Workspace"
}
]
},
"extensionDependencies": [
"streetsidesoftware.code-spell-checker"
],
"repository": {
"type": "git",
"url": "https://github.com/streetsidesoftware/vscode-cspell-dict-extensions",
"directory": "extensions/polish"
},
"bugs": {
"url": "https://github.com/streetsidesoftware/vscode-cspell-dict-extensions/issues"
},
"scripts": {
"clean": "rimraf out",
"clean-build": "npm run clean && npm run build",
"publish-extension": "vsce publish",
"pack-extension": "vsce package",
"vscode:prepublish": "npm run build",
"build": "tsc -p ./",
"watch": "tsc -watch -p ./",
"test:cspell": "cspell -c cspell-ext.json samples",
"test:vscode": "node ../../test-runner/bin.mjs . --sample samples/seattle.md",
"test": "npm run test:cspell && npm run test:vscode"
},
"dependencies": {
"@cspell/dict-pl_pl": "^3.0.4"
},
"vsce": {
"baseContentUrl": "https://raw.githubusercontent.com/streetsidesoftware/vscode-cspell-dict-extensions/refs/heads/main/extensions/polish/",
"baseImagesUrl": "https://raw.githubusercontent.com/streetsidesoftware/vscode-cspell-dict-extensions/refs/heads/main/extensions/polish/"
}
}