-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
100 lines (100 loc) · 2.47 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
{
"name": "dotnetscriptr",
"displayName": "dotnetscriptr",
"publisher": "Wivuu",
"repository": "https://github.com/onionhammer/Wivuu.DotnetScriptr",
"description": "Execute C#/CSX files interactively in Visual Studio Code.",
"icon": "images/icon.png",
"version": "0.2.4",
"preview": true,
"engines": {
"vscode": "^1.40.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onLanguage:csharp",
"onCommand:dotnetscriptr.runSelection",
"onCommand:dotnetscriptr.runDocument",
"onCommand:dotnetscriptr.install",
"onCommand:dotnetscriptr.initializeFolder"
],
"main": "./out/extension.js",
"extensionDependencies": [
"vscode.csharp"
],
"contributes": {
"commands": [
{
"command": "dotnetscriptr.install",
"title": "dotnetscriptr - Install Dependencies"
},
{
"command": "dotnetscriptr.runSelection",
"title": "dotnetscriptr - Run Selection"
},
{
"command": "dotnetscriptr.runDocument",
"title": "dotnetscriptr - Run Entire Document"
},
{
"command": "dotnetscriptr.initializeFolder",
"title": "dotnetscriptr - Initialize Folder"
}
],
"keybindings": [
{
"command": "dotnetscriptr.runSelection",
"key": "ctrl+enter",
"mac": "cmd+enter",
"when": "editorTextFocus && editorLangId == 'csharp'"
}
],
"configuration": {
"title": "DotnetSciptr",
"properties": {
"dotnetscriptr.advanceNextLine": {
"type": "boolean",
"default": false,
"description": "Automatically advance to next line after running empty selection"
},
"dotnetscriptr.debug": {
"type": "boolean",
"default": false,
"description": "Enable debug mode in `dotnet script` output (Requires reload)."
}
}
}
},
"scripts": {
"vscode:prepublish": "webpack --mode production",
"_vscode:uninstall": "todo",
"package": "vsce package",
"publish": "vsce publish",
"webpack": "webpack --mode development",
"webpack-dev": "webpack --mode development --watch",
"compile": "tsc -p ./",
"watch": "tsc --watch -p ./",
"pretest": "npm run compile",
"test": "node ./out/test/runTest.js"
},
"devDependencies": {
"@types/glob": "^7.1.2",
"@types/mocha": "^7.0.2",
"@types/node": "^14.0.14",
"@types/semver": "^7.3.1",
"@types/vscode": "^1.40.0",
"glob": "^7.1.5",
"mocha": "^8.0.1",
"ts-loader": "^7.0.5",
"tslint": "^6.1.2",
"typescript": "^3.9.5",
"vscode-test": "^1.4.0",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.12"
},
"dependencies": {
"semver": "^7.3.2"
}
}