-
-
Notifications
You must be signed in to change notification settings - Fork 42
/
package.json
104 lines (104 loc) · 2.83 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
{
"name": "code-spell-checker-serbian",
"description": "Serbian dictionary extension for VS Code.",
"version": "1.2.1",
"displayName": "Serbian - 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": [
"Serbian",
"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_serbian.enable",
"title": "Enable Serbian Spell Checker Dictionary"
},
{
"command": "cSpellExt_serbian.disable",
"title": "Disable Serbian Spell Checker Dictionary"
},
{
"command": "cSpellExt_serbian.enableCyrl",
"title": "Enable Serbian Cyrillic Spell Checker Dictionary"
},
{
"command": "cSpellExt_serbian.disableCyrl",
"title": "Disable Serbian Cyrillic Spell Checker Dictionary"
},
{
"command": "cSpellExt_serbian.enableLatn",
"title": "Enable Serbian Latin Spell Checker Dictionary"
},
{
"command": "cSpellExt_serbian.disableLatn",
"title": "Disable Serbian Latin Spell Checker Dictionary"
},
{
"command": "cSpellExt_serbian.enableWorkspace",
"title": "Enable Serbian Spell Checker Dictionary in Workspace"
},
{
"command": "cSpellExt_serbian.disableWorkspace",
"title": "Disable Serbian Spell Checker Dictionary in Workspace"
}
]
},
"extensionDependencies": [
"streetsidesoftware.code-spell-checker"
],
"repository": {
"type": "git",
"url": "https://github.com/streetsidesoftware/vscode-cspell-dict-extensions"
},
"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/Београд.md",
"test": "npm run test:cspell && npm run test:vscode"
},
"dependencies": {
"@cspell/dict-sr-cyrl": "^1.1.3",
"@cspell/dict-sr-latn": "^1.0.5"
}
}