-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
168 lines (168 loc) · 6.22 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
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
{
"name": "vscode-typst-sympy-calculator",
"displayName": "Typst Sympy Calculator",
"publisher": "OrangeX4",
"description": "VS Code extension for Typst math calculating, includes Arithmetic, Calculous, Matrix, Custom Variances and Funcions by yourself",
"icon": "icon.png",
"version": "0.5.1",
"engines": {
"vscode": "^1.46.0"
},
"categories": [
"Data Science",
"Notebooks"
],
"activationEvents": [
"onCommand:vscode-typst-sympy-calculator.reimport",
"onCommand:vscode-typst-sympy-calculator.variances",
"onCommand:vscode-typst-sympy-calculator.equal",
"onCommand:vscode-typst-sympy-calculator.replace",
"onCommand:vscode-typst-sympy-calculator.factor",
"onCommand:vscode-typst-sympy-calculator.expand",
"onCommand:vscode-typst-sympy-calculator.numerical",
"onCommand:vscode-typst-sympy-calculator.solve",
"onCommand:vscode-typst-sympy-calculator.python"
],
"main": "./extension.js",
"contributes": {
"configuration": [
{
"title": "Typst-Sympy-Calculator",
"properties": {
"vscode-typst-sympy-calculator.windows": {
"type": "string",
"default": "python",
"description": "Path of python for Windows."
},
"vscode-typst-sympy-calculator.linux": {
"type": "string",
"default": "python3",
"description": "Path of python for Linux."
},
"vscode-typst-sympy-calculator.macos": {
"type": "string",
"default": "python3",
"description": "Path of python for Mac OS."
}
}
}
],
"commands": [
{
"category": "Typst-Sympy-Calculator",
"command": "vscode-typst-sympy-calculator.reimport",
"title": "Reimport Files for Typst Sympy Calculator"
},
{
"category": "Typst-Sympy-Calculator",
"command": "vscode-typst-sympy-calculator.variances",
"title": "Show Current Variances"
},
{
"category": "Typst-Sympy-Calculator",
"command": "vscode-typst-sympy-calculator.equal",
"title": "Append result of selected expression"
},
{
"category": "Typst-Sympy-Calculator",
"command": "vscode-typst-sympy-calculator.replace",
"title": "Replace expression with its result"
},
{
"category": "Typst-Sympy-Calculator",
"command": "vscode-typst-sympy-calculator.factor",
"title": "Factor expression"
},
{
"category": "Typst-Sympy-Calculator",
"command": "vscode-typst-sympy-calculator.expand",
"title": "Expand expression"
},
{
"category": "Typst-Sympy-Calculator",
"command": "vscode-typst-sympy-calculator.numerical",
"title": "Calculate the numerical expression of selection"
},
{
"category": "Typst-Sympy-Calculator",
"command": "vscode-typst-sympy-calculator.solve",
"title": "Solve equations of selection"
},
{
"category": "Typst-Sympy-Calculator",
"command": "vscode-typst-sympy-calculator.python",
"title": "Calculate Python expression"
}
],
"keybindings": [
{
"command": "vscode-typst-sympy-calculator.equal",
"key": "Shift+Ctrl+Alt+E",
"mac": "Shift+Cmd+Alt+E",
"when": "editorTextFocus && editorHasSelection"
},
{
"command": "vscode-typst-sympy-calculator.replace",
"key": "Shift+Ctrl+Alt+R",
"mac": "Shift+Cmd+Alt+R",
"when": "editorTextFocus && editorHasSelection"
},
{
"command": "vscode-typst-sympy-calculator.factor",
"key": "Shift+Ctrl+Alt+F",
"mac": "Shift+Cmd+Alt+F",
"when": "editorTextFocus && editorHasSelection"
},
{
"command": "vscode-typst-sympy-calculator.expand",
"key": "Shift+Ctrl+Alt+X",
"mac": "Shift+Cmd+Alt+X",
"when": "editorTextFocus && editorHasSelection"
},
{
"command": "vscode-typst-sympy-calculator.numerical",
"key": "Shift+Ctrl+Alt+N",
"mac": "Shift+Cmd+Alt+N",
"when": "editorTextFocus && editorHasSelection"
},
{
"command": "vscode-typst-sympy-calculator.solve",
"key": "Shift+Ctrl+Alt+S",
"mac": "Shift+Cmd+Alt+S",
"when": "editorTextFocus && editorHasSelection"
},
{
"command": "vscode-typst-sympy-calculator.python",
"key": "Shift+Ctrl+Alt+P",
"mac": "Shift+Cmd+Alt+P",
"when": "editorTextFocus && editorHasSelection"
}
]
},
"scripts": {
"lint": "eslint .",
"pretest": "npm run lint",
"test": "node ./test/runTest.js"
},
"devDependencies": {
"@types/vscode": "^1.46.0",
"@types/glob": "^7.1.3",
"@types/mocha": "^8.0.0",
"@types/node": "^12.11.7",
"eslint": "^7.9.0",
"glob": "^7.1.6",
"mocha": "^8.1.3",
"typescript": "^4.0.2",
"vscode-test": "^1.4.0"
},
"dependencies": {},
"license": "MIT",
"bugs": {
"url": "https://github.com/OrangeX4/vscode-typst-sympy-calculator/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/OrangeX4/vscode-typst-sympy-calculator"
},
"homepage": "https://orangex4.cool"
}