forked from lfmunoz/vscode-makefile-term
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
99 lines (99 loc) · 3.15 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
{
"name": "vscode-makefile-term",
"displayName": "vscode-makefile-term",
"description": "Run makefiles from within the editor by clicking on target",
"version": "0.0.4",
"icon": "media/icon.png",
"publisher": "lfm",
"repository": {
"type": "git",
"url": "https://github.com/lfmunoz/vscode-makefile-term"
},
"engines": {
"vscode": "^1.65.0"
},
"categories": [
"Programming Languages", "Debuggers", "Other"
],
"keywords": [
"C", "C++", "Makefile"
],
"activationEvents": [
"onCommand:vscode-makefile-term.enableCodeLens",
"onLanguage:makefile"
],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"title": "Enable Makefile CodeLens",
"command": "vscode-makefile-term.enableCodeLens"
},
{
"title": "Disable Makefile Codelens",
"command": "vscode-makefile-term.disableCodeLens"
},
{
"title": "Run target again (or do nothing)",
"command": "vscode-makefile-term.runAgain"
}
],
"configuration": {
"properties": {
"vscode-makefile-term.enabled": {
"type": "boolean",
"default": true,
"description": "enable or disable the processing of make files"
},
"vscode-makefile-term.cacheSize": {
"type": "number",
"default": 10,
"description": "The number of documents to cache so doesn't reprocess when switching tabs (not implemeted)"
},
"vscode-makefile-term.commandTemplate": {
"type": "string",
"default": "cd %!makefileDir!%; make %!target!%",
"description": "Specifies what command to run on terminal. See docs for proper synatx (not implemeted)"
},
"vscode-makefile-term.titleTemplate": {
"type": "string",
"default": " ▶ make %!target!% ",
"description": "Specifies the text to display above target (not implemeted)"
}
}
},
"keybindings": [
{
"command": "vscode-makefile-term.runAgain",
"key": "Ctrl+Shift+x",
"mac": "Ctrl+Shift+x"
}
]
},
"scripts": {
"vscode:prepublish": "npm run esbuild-base -- --minify",
"esbuild-base": "esbuild ./src/extension.ts --bundle --outfile=out/main.js --external:vscode --format=cjs --platform=node",
"esbuild": "npm run esbuild-base -- --sourcemap",
"esbuild-watch": "npm run esbuild-base -- --sourcemap --watch",
"test-compile": "tsc -p ./",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"pretest": "npm run compile && npm run lint",
"lint": "eslint src --ext ts",
"test": "node ./out/test/runTest.js"
},
"devDependencies": {
"@types/glob": "^7.2.0",
"@types/mocha": "^9.1.0",
"@types/node": "14.x",
"@types/vscode": "^1.65.0",
"@typescript-eslint/eslint-plugin": "^5.12.1",
"@typescript-eslint/parser": "^5.12.1",
"@vscode/test-electron": "^2.1.2",
"esbuild": "^0.14.25",
"eslint": "^8.9.0",
"glob": "^7.2.0",
"mocha": "^9.2.1",
"typescript": "^4.5.5"
}
}