-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.src.json
More file actions
75 lines (75 loc) · 1.7 KB
/
package.src.json
File metadata and controls
75 lines (75 loc) · 1.7 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
{
"name": "vscode-textmate",
"displayName": "TextMate · Keymap and Features",
"description": "TextMate features and keybindings for Visual Studio Code (beta)",
"repository": {
"type": "git",
"url": "https://github.com/elia/vscode-textmate.git"
},
"icon": "icon.png",
"publisher": "elia",
"engines": {
"vscode": "^1.77.0"
},
"categories": ["Keymaps"],
"capabilities": {
"virtualWorkspaces": {
"supported": true
},
"untrustedWorkspaces": {
"supported": true
}
},
"activationEvents": ["onStartupFinished"],
"main": "./extension.js",
"contributes": {
"configuration": {
"type": "object",
"title": "TextMate Settings",
"properties": {}
},
"commands": [],
"keybindings": [],
"viewsWelcome": [],
"viewsContainers": {
"activitybar": [
{
"id": "vscodeTextmate",
"title": "TextMate",
"icon": "icon.png"
}
]
},
"views": {
"vscodeTextmate": [
{
"type": "webview",
"id": "vscode-textmate.selectFromListView",
"name": "Select From List",
"contextualTitle": "Select From List"
}
]
}
},
"scripts": {
"lint": "eslint .",
"pretest": "npm run lint",
"test": "node ./test/runTest.js"
},
"dependencies": {
"macos-pasteboard": "^0.1.1"
},
"devDependencies": {
"@types/glob": "^8.1.0",
"@types/mocha": "^10.0.1",
"@types/node": "16.x",
"@types/vscode": "^1.77.0",
"@vscode/test-electron": "^2.3.0",
"@vscode/vsce": "latest",
"eslint": "^8.36.0",
"glob": "^8.1.0",
"mocha": "^10.2.0",
"typescript": "^4.9.5"
},
"extensionDependencies": []
}