-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
96 lines (96 loc) · 1.9 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
{
"name": "symplex",
"displayName": "Symplex",
"description": "A Computer Algebra System for your code",
"publisher": "zalo",
"version": "0.0.8",
"license": "MIT",
"engines": {
"vscode": "^1.33.0"
},
"repository": {
"type": "git",
"url": "https://github.com/zalo/Symplex.git"
},
"categories": [
"Other"
],
"keywords": [
"algebra",
"calculus",
"symbolic",
"integrate",
"latex",
"sympy",
"symplex",
"cas",
"computer algebra system"
],
"icon": "images/icon.png",
"galleryBanner": {
"color": "#ffffff",
"theme": "light"
},
"activationEvents": [
"onLanguage:javascript",
"onLanguage:typescript",
"onLanguage:python",
"onCommand:symplex.Evaluate",
"onCommand:symplex.GetExpression"
],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "symplex.Evaluate",
"title": "Symplex: Symbolic Evaluate"
},
{
"command": "symplex.GetExpression",
"title": "Symplex: Get Expression"
}
],
"menus": {
"editor/context": [
{
"when": "editorHasSelection && resourceLangId =~ /(javascript|typescript|python)/",
"command": "symplex.Evaluate",
"group": "navigation@0"
},
{
"when": "editorHasSelection && resourceLangId =~ REPLACEWITHTHEABOVETODEBUGPARSING",
"command": "symplex.GetExpression",
"group": "navigation@1"
}
]
},
"snippets": [
{
"language": "javascript",
"path": "./snippetsDummy.json"
},
{
"language": "typescript",
"path": "./snippetsDummy.json"
},
{
"language": "python",
"path": "./snippetsDummy.json"
}
]
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"postinstall": "node ./node_modules/vscode/bin/install"
},
"devDependencies": {
"@types/node": "^10.17.51",
"@types/vscode": "^1.52.0",
"tslint": "^5.20.1"
},
"dependencies": {
"typescript": "^3.1.1"
}
}