-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
44 lines (44 loc) · 1.08 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
{
"name": "hex-hover-converter",
"displayName": "Hex Hover Converter",
"description": "Provides conversion between decimal, hex and binary numbers while hovering.",
"version": "1.2.2",
"publisher": "maziac",
"license": "MIT",
"keywords": [
"hex",
"binary",
"decimal",
"convert",
"hover"
],
"repository": {
"type": "git",
"url": "https://github.com/maziac/hex-hover-converter.git"
},
"engines": {
"vscode": "^1.71.0"
},
"categories": [
"Other"
],
"icon": "assets/icon.png",
"activationEvents": [
"onStartupFinished"
],
"main": "./out/extension",
"scripts": {
"compile": "tsc -p ./",
"tslint": "eslint ./**/*.ts",
"watch": "tsc -w -p ./",
"test": "mocha -u tdd ./out/tests/",
"package": "vsce package",
"publish": "vsce publish"
},
"devDependencies": {
"@types/mocha": "^10.0.0",
"@types/node": "18.8.2",
"@types/vscode": "^1.71.0",
"typescript": "^4.8.4"
}
}