forked from alhassy/easy-extensibility
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
137 lines (137 loc) · 3.8 KB
/
package.json
File metadata and controls
137 lines (137 loc) · 3.8 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
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
{
"name": "facil-extensibility",
"displayName": "facil-extensibility",
"description": "Extend VSCode without the ceremony of making a full extension! Just write your code anywhere and it'll be part of VSCode!",
"version": "1.2.14",
"repository": "https://github.com/inter1965/easy-extensibility",
"icon": "graphics/logo.jpg",
"publisher": "m1self",
"engines": {
"vscode": "^1.75.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onStartupFinished"
],
"main": "./out/extension.js",
"contributes": {
"configuration": {
"type": "object",
"title": "Facil Extensibility",
"properties": {
"easy-extensibility.rcFile": {
"type": "string",
"default": "~/.init.js",
"description": "Specifies the file path containing the main rc file to use."
},
"easy-extensibility.npmCommand": {
"type": "string",
"default": "npm",
"description": "Specifies the npm command from nodejs."
},
"easy-extensibility.dateCommand.unix": {
"type": "string",
"default": "date +%H:%M:%S",
"description": "Specifies the date command on unix like platform."
},
"easy-extensibility.dateCommand.windows": {
"type": "string",
"default": "date /T",
"description": "Specifies the date command on windows platform."
},
"easy-extensibility.nodeModules": {
"type": "string",
"description": "Specifies the global node modules directory."
},
"easy-extensibility.showMessageOnRCLoad": {
"type": "boolean",
"default": true,
"description": "Specifies whether to show the rc file loaded message."
}
}
},
"snippets": [
{
"language": "javascript",
"path": "./E-snippets.json"
}
],
"commands": [
{
"command": "easy-extensibility.evaluateSelection",
"title": "Evaluate Selected Region"
},
{
"command": "easy-extensibility.executeRegisteredCommand",
"title": "Execute Registered Command"
}
],
"keybindings": [
{
"command": "easy-extensibility.evaluateSelection",
"mac": "cmd+e",
"linux": "ctrl+c e",
"win": "ctrl+c e",
"when": "editorTextFocus"
},
{
"command": "easy-extensibility.evaluateSelection",
"mac": "shift+cmd+e",
"linux": "ctrl+c ctrl+e",
"win": "ctrl+c ctrl+e",
"when": "editorTextFocus",
"args": 1
},
{
"command": "easy-extensibility.executeRegisteredCommand",
"mac": "cmd+h",
"linux": "ctrl+c g",
"win": "ctrl+c g"
},
{
"command": "easy-extensibility.executeRegisteredCommand",
"mac": "shift+cmd+h",
"args": 1
},
{
"command": "easy-extensibility.executeRegisteredCommand",
"mac": "shift+5 cmd+h",
"args": 5
}
]
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"pretest": "npm run compile && npm run lint",
"lint": "eslint src",
"test": "vscode-test"
},
"devDependencies": {
"@types/glob": "^7.2.0",
"@types/hjson": "^2.4.6",
"@types/mocha": "^9.1.1",
"@types/node": "^16.11.47",
"@types/vscode": "^1.68.0",
"@vscode/test-electron": "^2.1.3",
"eslint": "^8.21.0",
"glob": "^8.0.3",
"mocha": "^10.0.0",
"typescript": "^4.7.2"
},
"dependencies": {
"axios": "^0.27.2",
"body-parser": "^1.20.0",
"concat-stream": "^2.0.0",
"express": "^4.18.1",
"hjson": "^3.2.2",
"json5": "^2.2.1",
"ramda": "^0.28.0",
"require-from-url": "^3.1.3",
"undici": "^7.3.0",
"vscodejs": "^1.2.4"
}
}