-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
94 lines (94 loc) · 1.94 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
{
"name": "lntoggle",
"displayName": "Line Numbers Toggle",
"author": "Vitalii Kravchenko <[email protected]>",
"description": "Easily toggle line numbers on and off",
"version": "1.0.0",
"keywords": [
"vscode",
"code",
"line",
"numbers",
"switch",
"toggle"
],
"homepage": "https://github.com/yay/lntoggle",
"repository": {
"type": "git",
"url": "https://github.com/yay/lntoggle.git"
},
"bugs": {
"url": "https://github.com/yay/lntoggle",
"email": "[email protected]"
},
"license": "MIT",
"main": "./out/extension.js",
"scripts": {
"package": "yarn run compile && vsce package --yarn -o extension.vsix",
"compile": "tsc -p ./ && yarn minify",
"minify": "uglifyjs-folder -e -x .js -o out out",
"watch": "tsc -watch -p ./",
"postinstall": "node ./node_modules/vscode/bin/install",
"test": "yarn run compile && node ./node_modules/vscode/bin/test"
},
"engines": {
"yarn": ">=1",
"node": ">=12",
"vscode": "^1.42.0"
},
"dependencies": {},
"devDependencies": {
"@types/mocha": "^8.2.2",
"@types/node": "^16.11.7",
"typescript": "^4.6.4",
"uglify-js": "^3.13.8",
"uglifyjs-folder": "^2.0.0",
"vsce": "^2.7.0",
"vscode": "^1.1.37"
},
"publisher": "yay",
"icon": "assets/icon.png",
"galleryBanner": {
"color": "#FAFAFA",
"theme": "light"
},
"categories": [
"Other"
],
"activationEvents": [
"*"
],
"contributes": {
"commands": [
{
"command": "lntoggle.show",
"title": "Show Line Numbers"
},
{
"command": "lntoggle.hide",
"title": "Hide Line Numbers"
},
{
"command": "lntoggle.toggle",
"title": "Toggle Line Numbers"
}
],
"keybindings": [
{
"command": "lntoggle.toggle",
"key": "ctrl+shift+l"
}
],
"configuration": {
"type": "object",
"title": "Line Numbers Toggle",
"properties": {
"lntoggle.priority": {
"type": "number",
"description": "The priority for the statusbar toggle",
"default": 0
}
}
}
}
}