-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
122 lines (122 loc) · 3.65 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
118
119
120
121
122
{
"name": "writinghelper",
"displayName": "writingHelper",
"description": "get all the benefits of Grammarly & Linggle",
"author": "istarwyh",
"publisher": "istarwyh",
"license": "GPLv2",
"version": "0.1.8",
"icon": "writingcatlogo.png",
"repository": {
"type": "git",
"url": "https://github.com/istarwyh/writingHelper"
},
"categories": [
"Snippets",
"Notebooks",
"Other"
],
"keywords": [
"writing",
"english",
"ielts",
"helper"
],
"engines": {
"vscode": "^1.33.0"
},
"activationEvents": [
"onLanguage:markdown",
"onLanguage:plaintext",
"onLanguage:latex",
"onLanguage:tex"
],
"contributes": {
"configuration": {
"type": "object",
"title": "writingcat",
"properties": {
"writingcat.provideHover": {
"type": "boolean",
"default": false,
"description": "Need a hovering prompt? The default is no in this demo"
},
"writingcat.completionSetting": {
"type": "string",
"default": "Sentence",
"description": "提示词伙以及优先单词例句",
"enum": [
"OnlyNecessary",
"Sentence",
"Interpretation "
],
"enumDescriptions": [
"仅提示词伙",
"提示词伙以及优先单词例句",
"提示词伙以及优先词伙解释"
]
},
"writingcat.trace.server": {
"scope": "window",
"type": "string",
"enum": [
"off",
"messages",
"verbose"
],
"default": "off",
"description": "Traces the communication between VS Code and the language server (For Developer)."
},
"writingcat.showEnglishCount": {
"type": "boolean",
"default": true,
"description": "Show English characters' number"
},
"writingcat.showAllCount": {
"type": "boolean",
"default": true,
"description": "Show all characters' number in the text including symbols"
},
"writingcat.targetWordCount": {
"type": "number",
"default": 200,
"description": "The target number of character"
}
}
},
"keybindings": [
{
"command": "sayElapseTime",
"key": "alt+q"
}
]
},
"main": "./client/out/extension",
"scripts": {
"compile": "tsc -b",
"watch": "tsc -b -w",
"postinstall": "cd client && npm install && cd ../server && npm install && cd ..",
"test": "sh ./scripts/e2e.sh"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^13.0.0",
"@rollup/plugin-node-resolve": "^8.1.0",
"@types/jasmine": "3.5.9",
"@types/node": "^12.12.30",
"clang-format": "1.4.0",
"jasmine": "3.5.0",
"prettier": "1.19.1",
"rollup": "^2.0.6",
"ts-loader": "^8.1.0",
"tslint": "^6.1.0",
"tslint-eslint-rules": "5.4.0",
"typescript": "^3.9.10",
"vsce": "^1.96.1",
"webpack": "^5.30.0",
"webpack-cli": "^4.6.0"
},
"dependencies": {
"tsc": "^1.20150623.0"
},
"__npminstall_done": false
}