forked from apiad/lovelaice
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.12 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.12 KB
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
{
"name": "lovelaice",
"description": "An AI-powered writing assistant for VSCode",
"author": "Alejandro Piad Morffis",
"repository": "https://github.com/apiad/lovelaice",
"license": "MIT",
"version": "0.1.0",
"engines": {
"vscode": "^1.62.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onLanguage:markdown"
],
"contributes": {
"commands": [],
"configuration": {
"type": "object",
"title": "Lovelaice Server Configuration",
"properties": {
"lovelaice.exampleConfiguration": {
"scope": "resource",
"type": "string",
"default": "You can override this message."
}
}
}
},
"main": "./client/out/extension",
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -b",
"watch": "tsc -b -w"
},
"devDependencies": {
"@types/node": "^16.11.6",
"@types/vscode": "^1.62.0",
"@typescript-eslint/eslint-plugin": "^5.3.0",
"@typescript-eslint/parser": "^5.3.0",
"eslint": "^8.2.0",
"typescript": "^4.4.4"
},
"dependencies": {
"vscode-languageclient": "^7.0.0"
}
}