Skip to content

Commit 3fea927

Browse files
committed
Release 0.10.0
1 parent 362189a commit 3fea927

File tree

1 file changed

+115
-110
lines changed

1 file changed

+115
-110
lines changed

client/package.json

Lines changed: 115 additions & 110 deletions
Original file line numberDiff line numberDiff line change
@@ -1,114 +1,119 @@
11
{
2-
"name": "code-spell-checker",
3-
"description": "Simple spellchecker for source code",
4-
"displayName": "Source Code Spell Checker",
5-
"icon": "images/icon2.png",
6-
"author": "Jason Dent",
7-
"license": "MIT",
8-
"version": "0.9.0",
9-
"publisher": "streetsidesoftware",
10-
"repository": {
11-
"type": "git",
12-
"url": "https://github.com/Jason-Rev/vscode-spell-checker"
13-
},
14-
"bugs": {
15-
"url": "https://github.com/Jason-Rev/vscode-spell-checker/issues"
16-
},
17-
"homepage": "https://github.com/Jason-Rev/vscode-spell-checker/blob/master/client/README.md",
18-
"engines": {
19-
"vscode": "^1.2.1"
20-
},
21-
"categories": [
22-
"Linters",
23-
"Other"
24-
],
25-
"keywords": [
26-
"spell",
27-
"checker",
28-
"spellchecker"
29-
],
30-
"activationEvents": [
31-
"*"
32-
],
33-
"main": "./out/src/extension",
34-
"contributes": {
35-
"commands": [
36-
{"command": "cSpell.addWordToDictionary", "title": "Add Word to Dictionary"}
2+
"name": "code-spell-checker",
3+
"description": "Simple spellchecker for source code",
4+
"displayName": "Source Code Spell Checker",
5+
"icon": "images/icon2.png",
6+
"author": "Jason Dent",
7+
"license": "MIT",
8+
"version": "0.10.0",
9+
"publisher": "streetsidesoftware",
10+
"repository": {
11+
"type": "git",
12+
"url": "https://github.com/Jason-Rev/vscode-spell-checker"
13+
},
14+
"bugs": {
15+
"url": "https://github.com/Jason-Rev/vscode-spell-checker/issues"
16+
},
17+
"homepage": "https://github.com/Jason-Rev/vscode-spell-checker/blob/master/client/README.md",
18+
"engines": {
19+
"vscode": "^1.2.1"
20+
},
21+
"categories": [
22+
"Linters",
23+
"Other"
3724
],
38-
"configuration": {
39-
"type": "object",
40-
"title": "Code Spell Checker Configuration",
41-
"properties": {
42-
"cSpell.maxNumberOfProblems": {
43-
"type": "number",
44-
"default": 100,
45-
"description": "Controls the maximum number of spelling errors per document."
46-
},
47-
"cSpell.numSuggestions": {
48-
"type": "number",
49-
"default": 8,
50-
"description": "Controls the number of suggestions shown."
51-
},
52-
"cSpell.minWordLength": {
53-
"type": "number",
54-
"default": 4,
55-
"description": "The minimum length of a word before checking it against a dictionary."
56-
},
57-
"cSpell.enabledLanguageIds": {
58-
"type": "array",
59-
"default": [
60-
"csharp",
61-
"go",
62-
"javascript",
63-
"javascriptreact",
64-
"markdown",
65-
"php",
66-
"plaintext",
67-
"text",
68-
"typescript",
69-
"typescriptreact",
70-
"yml"
71-
],
72-
"description": "Specify file types to spell check."
73-
},
74-
"cSpell.words": {
75-
"type": "array",
76-
"default": [],
77-
"description": "Words to add to dictionary for a workspace."
78-
},
79-
"cSpell.userWords": {
80-
"type": "array",
81-
"default": [],
82-
"description": "User words to add to dictionary. Should only be in the user settings."
83-
},
84-
"cSpell.ignorePaths": {
85-
"type": "array",
86-
"default": [
87-
"node_modules", "vscode-extension", ".git"
88-
],
89-
"description": "Specify paths/files to ignore."
25+
"keywords": [
26+
"spell",
27+
"checker",
28+
"spellchecker"
29+
],
30+
"activationEvents": [
31+
"*"
32+
],
33+
"main": "./out/src/extension",
34+
"contributes": {
35+
"commands": [
36+
{
37+
"command": "cSpell.addWordToDictionary",
38+
"title": "Add Word to Dictionary"
39+
}
40+
],
41+
"configuration": {
42+
"type": "object",
43+
"title": "Code Spell Checker Configuration",
44+
"properties": {
45+
"cSpell.maxNumberOfProblems": {
46+
"type": "number",
47+
"default": 100,
48+
"description": "Controls the maximum number of spelling errors per document."
49+
},
50+
"cSpell.numSuggestions": {
51+
"type": "number",
52+
"default": 8,
53+
"description": "Controls the number of suggestions shown."
54+
},
55+
"cSpell.minWordLength": {
56+
"type": "number",
57+
"default": 4,
58+
"description": "The minimum length of a word before checking it against a dictionary."
59+
},
60+
"cSpell.enabledLanguageIds": {
61+
"type": "array",
62+
"default": [
63+
"csharp",
64+
"go",
65+
"javascript",
66+
"javascriptreact",
67+
"markdown",
68+
"php",
69+
"plaintext",
70+
"text",
71+
"typescript",
72+
"typescriptreact",
73+
"yml"
74+
],
75+
"description": "Specify file types to spell check."
76+
},
77+
"cSpell.words": {
78+
"type": "array",
79+
"default": [],
80+
"description": "Words to add to dictionary for a workspace."
81+
},
82+
"cSpell.userWords": {
83+
"type": "array",
84+
"default": [],
85+
"description": "User words to add to dictionary. Should only be in the user settings."
86+
},
87+
"cSpell.ignorePaths": {
88+
"type": "array",
89+
"default": [
90+
"node_modules",
91+
"vscode-extension",
92+
".git"
93+
],
94+
"description": "Specify paths/files to ignore."
95+
}
96+
}
9097
}
91-
}
98+
},
99+
"scripts": {
100+
"vscode:prepublish": "node ./node_modules/vscode/bin/compile",
101+
"compile": "node ./node_modules/vscode/bin/compile -watch -p ./",
102+
"postinstall": "node ./node_modules/vscode/bin/install"
103+
},
104+
"devDependencies": {
105+
"chai": "^3.5.0",
106+
"lorem-ipsum": "^1.0.3",
107+
"typescript": "^1.8.9",
108+
"vscode": "^0.11.13"
109+
},
110+
"dependencies": {
111+
"comment-json": "^1.1.3",
112+
"lodash": "^4.13.1",
113+
"mkdirp": "^0.5.1",
114+
"rx": "^4.1.0",
115+
"tsmerge": "^1.0.4",
116+
"vscode-languageclient": "^2.0.0",
117+
"xregexp": "^3.1.1"
92118
}
93-
},
94-
"scripts": {
95-
"vscode:prepublish": "node ./node_modules/vscode/bin/compile",
96-
"compile": "node ./node_modules/vscode/bin/compile -watch -p ./",
97-
"postinstall": "node ./node_modules/vscode/bin/install"
98-
},
99-
"devDependencies": {
100-
"chai": "^3.5.0",
101-
"lorem-ipsum": "^1.0.3",
102-
"typescript": "^1.8.9",
103-
"vscode": "^0.11.13"
104-
},
105-
"dependencies": {
106-
"comment-json": "^1.1.3",
107-
"lodash": "^4.13.1",
108-
"mkdirp": "^0.5.1",
109-
"rx": "^4.1.0",
110-
"tsmerge": "^1.0.4",
111-
"vscode-languageclient": "^2.0.0",
112-
"xregexp": "^3.1.1"
113-
}
114-
}
119+
}

0 commit comments

Comments
 (0)