-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
138 lines (138 loc) · 3.52 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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
{
"name": "duck-mode",
"displayName": "Duck Mode",
"description": "Enables ducks for Visual Studio Code, something you never knew you needed until now.",
"version": "0.2.1",
"publisher": "shitware-ltd",
"engines": {
"vscode": "^1.76.0"
},
"categories": [
"Other"
],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "duck-mode.duckOn",
"title": "Duck Mode On"
},
{
"command": "duck-mode.duckOff",
"title": "Duck Mode Off"
},
{
"command": "duck-mode.toggle",
"title": "Toggle Duck Mode"
},
{
"command": "duck-mode.quack",
"title": "Quack"
},
{
"command": "duck-mode.invoke-mia",
"title": "🦄 Invoke Mia"
}
],
"icons": {
"pd-duck": {
"description": "Public Domain Duck",
"default": {
"fontPath": "./duckmode.woff",
"fontCharacter": "\\e900"
}
}
},
"menus": {
"editor/context": [
{
"command": "duck-mode.quack",
"title": "Quack",
"group": "z_commands@100",
"when": "duck-mode.duckModeActive"
},
{
"command": "duck-mode.invoke-mia",
"title": "🦄 Invoke Mia",
"group": "z_commands@100",
"when": "duck-mode.duckModeActive"
}
]
},
"viewsContainers": {
"activitybar": [
{
"id": "duck-mode",
"title": "Duck Mode",
"icon": "resources/duck-mode.svg"
}
]
},
"views": {
"duck-mode": [
{
"id": "duck-mode-welcome",
"name": "Welcome",
"when": "!duck-mode.duckModeActive"
},
{
"id": "duck-mode.speciesView",
"name": "Species",
"type": "webview",
"when": "duck-mode.duckModeActive"
}
]
},
"viewsWelcome": [
{
"view": "duck-mode-welcome",
"contents": "Duck mode allows you to maximise your ducking potential.\nYour code can be ducked up to your heart's content, and everyone will thing you are a ducking legend.\nStart by quacking until your ducking boss tells you to quit ducking about and get some ducking work done.\n[Go quack yourself ](command:duck-mode.duckOn)"
}
],
"configuration": {
"title": "Duck Mode",
"properties": {
"statusBar.background" : {
"type":"string",
"default": "#ff9999",
"description": "Initial status bar color",
"scope": "application"
}
}
},
"snippets": [
{
"language": "php",
"path": "./snippets/php.json"
}
]
},
"repository": {
"type": "git",
"url": "https://github.com/shitware-ltd/duckmode-vscode"
},
"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/glob": "^8.0.0",
"@types/mocha": "^10.0.0",
"@types/node": "16.x",
"@types/vscode": "^1.73.0",
"@types/vscode-webview": "^1.57.0",
"@typescript-eslint/eslint-plugin": "^5.42.0",
"@typescript-eslint/parser": "^5.42.0",
"@vscode/codicons": "0.0.20",
"@vscode/test-electron": "^2.2.0",
"eslint": "^8.26.0",
"glob": "^8.0.3",
"mocha": "^10.1.0",
"ts-node": "^10.9.1",
"typescript": "^4.9.4"
}
}