-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
118 lines (118 loc) · 2.85 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
{
"description": "An extension that connects vscode to a hue bridge",
"displayName": "Hue Am I Doing",
"icon": "resources/icon.png",
"license": "BSD-3-Clause",
"main": "./dist/extension.js",
"name": "daanv2-hue-am-i-doing",
"pricing": "Free",
"publisher": "DaanV2",
"version": "2.0.0",
"author": {
"name": "DaanV2"
},
"repository": {
"type": "git",
"url": "https://github.com/DaanV2/Vscode-Hue-Am-I-Doing"
},
"engines": {
"vscode": "^1.79.0"
},
"categories": [
"Other",
"Visualization"
],
"activationEvents": [
"*"
],
"extensionKind": [
"workspace"
],
"scripts": {
"vscode:prepublish": "npm run package",
"compile": "webpack",
"watch": "webpack --watch",
"package": "webpack --mode production --devtool hidden-source-map",
"pretest": "npm run compile",
"lint": "eslint src --ext ts",
"test": "jest --coverage",
"postversion": "git push && git push --tags"
},
"dependencies": {
"@daanv2/hue": "^1.0.20"
},
"devDependencies": {
"@types/glob": "^8.1.0",
"@types/jest": "^29.5.12",
"@types/node": "^22.5.1",
"@types/vscode": "^1.92.0",
"@typescript-eslint/eslint-plugin": "^8.3.0",
"@typescript-eslint/parser": "^8.3.0",
"@vscode/test-electron": "^2.4.1",
"@vscode/vsce": "^3.0.0",
"eslint": "^9.9.1",
"jest": "^29.7.0",
"ts-jest": "^29.2.5",
"ts-loader": "^9.5.1",
"typescript": "^5.5.4",
"webpack": "^5.94.0",
"webpack-cli": "^5.1.4"
},
"files": [
"resources/**/*"
],
"contributes": {
"commands": [
{
"title": "Add New Hue Bridge",
"category": "Hue Am I Doing",
"command": "hue-am-i-doing.new-bridge",
"icon": "$(diff-insert)"
},
{
"title": "Configure Hue Bridge",
"category": "Hue Am I Doing",
"command": "hue-am-i-doing.configure-bridge",
"icon": "$(settings-more-action)"
}
],
"menus": {
"view/title": [
{
"command": "hue-am-i-doing.new-bridge",
"when": "view == hue-am-i-doing-bridges-view",
"group": "navigation"
},
{
"command": "hue-am-i-doing.configure-bridge",
"when": "view == hue-am-i-doing-bridges-view",
"group": "navigation"
}
],
"view/item/context": [
{
"command": "hue-am-i-doing.configure-bridge",
"when": "view == hue-am-i-doing-bridges-view",
"group": "inline"
}
]
},
"viewsContainers": {
"activitybar": [
{
"id": "hue-am-i-doing-activity",
"title": "Hue Am I Doing",
"icon": "resources/icon-cutout.svg"
}
]
},
"views": {
"hue-am-i-doing-activity": [
{
"id": "hue-am-i-doing-bridges-view",
"name": "Bridges"
}
]
}
}
}