-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
62 lines (62 loc) · 1.71 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
{
"name": "phpliteadmin",
"displayName": "CS50 phpLiteAdmin",
"description": "Preview SQLite database in Visual Studio Code.",
"version": "0.0.1",
"publisher": "CS50",
"repository": "https://github.com/cs50/phpliteadmin.vsix",
"engines": {
"vscode": "^1.85.0"
},
"categories": [
"Education"
],
"activationEvents": [
"onStartupFinished"
],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "phpliteadmin50.open",
"title": "Open in phpLiteAdmin",
"enablement": "phpliteadmin50:didActivateExtension"
}
],
"customEditors": [
{
"viewType": "cs50.phpliteadmin",
"displayName": "phpLiteAdmin",
"selector": [
{
"filenamePattern": "*.db"
}
],
"priority": "option"
}
],
"menus": {
"explorer/context": [
{
"command": "phpliteadmin50.open",
"when": "resourceExtname == '.db'",
"group": "2_workspace@0"
}
]
}
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"lint": "eslint . --ext .ts,.tsx",
"watch": "tsc -watch -p ./"
},
"devDependencies": {
"@types/node": "^20.11.17",
"@types/vscode": "^1.85.0",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"eslint": "^8.56.0",
"typescript": "^5.3.3"
}
}