-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
104 lines (104 loc) · 2.54 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
{
"name": "cod-colors",
"displayName": "COD Colors",
"description": "Call of Duty 4 color-code generator, converter",
"publisher": "TharinduJ",
"version": "1.1.1",
"engines": {
"vscode": "^1.67.0"
},
"categories": [
"Other"
],
"icon": "assets/extension-icon.png",
"author": {
"email": "[email protected]",
"name": "Tharindu Jayakody"
},
"repository": {
"type": "git",
"url": "https://github.com/tharindudj/cod-colors"
},
"activationEvents": [
"onCommand:cod-colors.convertToCod",
"onView:left-panel-webview"
],
"main": "./dist/extension.js",
"contributes": {
"commands": [
{
"command": "cod-colors.convertToCod",
"title": "Convert RGB/Hex to Cod Color"
}
],
"menus": {
"editor/context": [
{
"when": "editorHasSelection",
"command": "cod-colors.convertToCod",
"group": "1_modification"
}
]
},
"viewsContainers": {
"activitybar": [
{
"id": "webview",
"title": "COD Colors",
"icon": "./assets/extension-icon.png"
}
]
},
"views": {
"webview": [
{
"type": "webview",
"id": "left-panel-webview",
"name": "Color Generator",
"icon": "src/assets/extension-icon.png"
}
]
}
},
"scripts": {
"compile": "npm run tsc -p ./",
"watch": "tsc -watch -p ./ && npm run compile",
"vscode:package": "vsce package",
"webpack": "webpack --mode development",
"test-compile": "tsc -p ./",
"package": "rm -rf *.vsix && npm run webpack && vsce package"
},
"devDependencies": {
"@types/glob": "^7.2.0",
"@types/jest": "^27.5.1",
"@types/mocha": "^9.1.1",
"@types/node": "14.x",
"@types/vscode": "^1.67.0",
"@typescript-eslint/eslint-plugin": "^5.12.1",
"@typescript-eslint/parser": "^5.12.1",
"@vscode/test-electron": "^2.1.2",
"glob": "^7.2.3",
"mocha": "^9.2.1",
"ts-loader": "^9.2.6",
"typescript": "^4.5.5",
"webpack": "^5.76.0",
"webpack-cli": "^4.9.2"
},
"dependencies": {
"@types/react": "^18.0.9",
"@types/react-dom": "^18.0.5",
"@vscode/webview-ui-toolkit": "^1.0.0",
"dotenv-webpack": "^7.1.0",
"react": "^18.1.0",
"react-dom": "^18.1.0",
"module-alias": "^2.2.2",
"path": "^0.12.7",
"tslib": "^2.4.0"
},
"_moduleAliases": {
"utils": "dist/utils",
"providers": "dist/providers",
"components": "dist/components",
"constant": "dist/constant.js"
}
}