-
-
Notifications
You must be signed in to change notification settings - Fork 44
/
Copy pathpackage.json
89 lines (89 loc) · 2.38 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
{
"name": "hunspell",
"displayName": "hunspell",
"description": "Hunspell Syntax Highlighting support",
"version": "1.0.4",
"publisher": "streetsidesoftware",
"engines": {
"vscode": "^1.14.0"
},
"categories": [
"Programming Languages"
],
"license": "MIT",
"qna": "marketplace",
"icon": "images/hunspell.png",
"capabilities": {
"virtualWorkspaces": true,
"untrustedWorkspaces": {
"supported": true
}
},
"contributes": {
"languages": [
{
"id": "hunspell.aff",
"aliases": [
"Hunspell",
"hunspell",
"aff"
],
"extensions": [
".aff"
],
"configuration": "./language-configuration.json"
},
{
"id": "hunspell.dic",
"aliases": [
"Hunspell",
"hunspell",
"dic"
],
"extensions": [
".dic"
],
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "hunspell.aff",
"scopeName": "source.hunspell.aff",
"path": "./syntaxes/aff.tmLanguage.json"
},
{
"language": "hunspell.dic",
"scopeName": "source.hunspell.dic",
"path": "./syntaxes/dic.tmLanguage.json"
}
]
},
"repository": {
"type": "git",
"url": "https://github.com/streetsidesoftware/vscode-cspell-dict-extensions",
"directory": "extensions/hunspell-syntax"
},
"bugs": {
"url": "https://github.com/streetsidesoftware/vscode-cspell-dict-extensions/issues"
},
"scripts": {
"clean": "echo clean",
"clean-build": "echo clean-build",
"publish-extension": "vsce publish",
"pack-extension": "vsce package",
"vscode:prepublish": "echo prepublish",
"build": "echo build",
"watch": "echo watch",
"test:cspell": "cspell -c cspell.json samples",
"test:vscode": "echo OK - no code here.",
"test": "npm run test:cspell && npm run test:vscode"
},
"private": true,
"vsce": {
"baseContentUrl": "https://raw.githubusercontent.com/streetsidesoftware/vscode-cspell-dict-extensions/refs/heads/main/extensions/hunspell-syntax/",
"baseImagesUrl": "https://raw.githubusercontent.com/streetsidesoftware/vscode-cspell-dict-extensions/refs/heads/main/extensions/hunspell-syntax/"
},
"author": "Street Side Software <[email protected]>",
"contributors": []
}