-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
69 lines (69 loc) · 1.64 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
{
"name": "spacy-extension",
"displayName": "spaCy",
"description": "spaCy extension that provides additional tooling and features for working with spaCy's config files",
"author": "Explosion",
"repository": "https://github.com/explosion/spacy-vscode",
"license": "MIT",
"version": "1.0.1",
"icon": "icon.png",
"galleryBanner": {
"color": "#1e415e",
"theme": "dark"
},
"publisher": "Explosion",
"homepage": "explosion.ai",
"keywords": [
"python",
"spacy",
"prodigy",
"explosion",
"NLP",
"ML"
],
"engines": {
"vscode": "^1.74.0"
},
"categories": [
"Other",
"Machine Learning"
],
"extensionDependencies": [
"ms-python.python"
],
"activationEvents": [
"workspaceContains:**/*.cfg"
],
"contributes": {
"commands": [],
"configuration": {
"title": "spaCy Server Configuration",
"properties": {
"spacy-extension.pythonInterpreter": {
"scope": "resource",
"type": "string",
"default": "",
"description": "Specify python interpreter to start the spaCy extension server. Make sure it contains all required modules."
}
}
}
},
"main": "./client/out/extension",
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -b",
"watch": "tsc -b -w",
"lint": "eslint . --ext .ts"
},
"devDependencies": {
"@types/node": "16.11.43",
"@types/vscode": "^1.74.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": "^8.0.2"
}
}