-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
81 lines (81 loc) · 2.39 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
{
"name": "keyword-context",
"publisher": "JustinFrizzell",
"displayName": "Keyword Context",
"description": "Provides user-supplied hover context for keywords detected in the editor.",
"version": "1.0.0",
"icon": "icon.png",
"repository": {
"type": "git",
"url": "https://github.com/JustinFrizzell/keyword-context"
},
"homepage": "https://github.com/JustinFrizzell/keyword-context/blob/main/README.md",
"license": "https://github.com/JustinFrizzell/keyword-context/blob/main/LICENSE",
"engines": {
"vscode": "^1.60.1"
},
"categories": [
"Other"
],
"badges": [
{
"url": "https://dev.azure.com/justinfrizzell/Keyword%20Context/_apis/build/status%2FJustinFrizzell.keyword-context?branchName=main",
"href": "https://dev.azure.com/justinfrizzell/Keyword%20Context/_build/latest?definitionId=1&branchName=main",
"description": "Test Status"
}
],
"activationEvents": [
"onStartupFinished"
],
"main": "./out/extension.js",
"contributes": {
"configuration": {
"title": "Map",
"properties": {
"keyword-context.map": {
"type": "array",
"default": [
{
"keyword": "some_badly_named_variable",
"tooltip": "This variable is used for..."
},
{
"keyword": "some_badly_named_function",
"tooltip": "This function does..."
},
{
"keyword": "ID_234873",
"tooltip": "This ID refers to..."
}
],
"description": "Add keywords and their tooltips to settings.json"
},
"keyword-context.source-toggle": {
"type": "boolean",
"default": false,
"description": "Show the source of the tooltip on hover."
}
}
}
},
"scripts": {
"vscode:prepublish": "npm run compile",
"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/mocha": "^10.0.1",
"@types/node": "16.x",
"@types/vscode": "^1.60.1",
"@typescript-eslint/eslint-plugin": "^6.4.1",
"@typescript-eslint/parser": "^6.4.1",
"@vscode/test-electron": "^2.3.4",
"eslint": "^8.47.0",
"glob": "^10.3.3",
"mocha": "^10.2.0",
"typescript": "^5.1.6"
}
}