-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
147 lines (147 loc) · 4.07 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
139
140
141
142
143
144
145
146
147
{
"description": "VS Code extension that allows fast & colorful access to multiple workspaces",
"displayName": "Kolor Kross",
"icon": "media/kolorkross_ver.png",
"main": "./dist/extension.js",
"name": "kolorkross",
"publisher": "obostjancic",
"repository": "https://github.com/obostjancic/kolorkross",
"version": "0.3.0",
"activationEvents": [
"onStartupFinished",
"onCommand:kolorkross.createGroup",
"onWebviewPanel:kolorkross.kolorkrossboard"
],
"categories": [
"Other"
],
"contributes": {
"commands": [
{
"command": "kolorkross.openDashboard",
"title": "Kolor Kross: Open Dashboard"
},
{
"command": "kolorkross.createGroup",
"title": "Kolor Kross: Create Group"
},
{
"command": "kolorkross.updateGroup",
"title": "Kolor Kross: Update Group"
},
{
"command": "kolorkross.updateGroupOrder",
"title": "Kolor Kross: Update Group Order"
},
{
"command": "kolorkross.deleteGroup",
"title": "Kolor Kross: Delete Group"
},
{
"command": "kolorkross.createProject",
"title": "Kolor Kross: Create Project"
},
{
"command": "kolorkross.updateProject",
"title": "Kolor Kross: Update Project"
},
{
"command": "kolorkross.updateProjectOrder",
"title": "Kolor Kross: Update Project Order"
},
{
"command": "kolorkross.deleteProject",
"title": "Kolor Kross: Delete Project"
}
],
"configuration": [
{
"order": 1,
"id": "kolorkross",
"title": "Kolor Kross",
"properties": {
"kolorkross.groups": {
"type": "object",
"description": "Groups"
},
"kolorkross.projects": {
"type": "object",
"description": "Projects"
}
}
}
],
"views": {
"kolorkross": [
{
"id": "kolorkross.dashboard",
"name": "Dashboard",
"type": "webview",
"visibility": "visible"
}
]
},
"viewsContainers": {
"activitybar": [
{
"icon": "assets/kolorkross.svg",
"id": "kolorkross",
"title": "Kolor Kross"
}
]
}
},
"dependencies": {
"@types/color": "^3.0.2",
"@vscode/codicons": "^0.0.27",
"@vscode/webview-ui-toolkit": "^0.8.4",
"color": "^4.1.0",
"reflect-metadata": "^0.1.13",
"tsyringe": "^4.6.0"
},
"devDependencies": {
"@types/glob": "^7.1.4",
"@types/jest": "^27.0.3",
"@types/node": "14.x",
"@types/vscode": "^1.63.0",
"@typescript-eslint/eslint-plugin": "^5.8.1",
"@typescript-eslint/parser": "^5.8.1",
"@vscode/test-electron": "^1.6.2",
"eslint": "^8.5.0",
"eslint-config-prettier": "^8.3.0",
"glob": "^7.1.7",
"husky": ">=6",
"jest": "^27.4.5",
"lint-staged": ">=10",
"prettier": "^2.5.1",
"ts-jest": "^27.1.1",
"ts-loader": "^9.2.5",
"typescript": "^4.4.3",
"webpack": "^5.52.1",
"webpack-cli": "^4.8.0"
},
"engines": {
"vscode": "^1.63.0"
},
"lint-staged": {
"*.ts": "eslint --cache --fix"
},
"scripts": {
"compile": "webpack",
"compile-tests": "tsc -p . --outDir out",
"lint": "eslint src --ext ts",
"package": "webpack --mode production --devtool hidden-source-map",
"prepackage": "rm -rf vendor | true && mkdir vendor && cp -R node_modules/@vscode vendor/@vscode && rm -rf vendor/@vscode/test-electron",
"prepare": "husky install",
"pretest:e2e": "yarn run compile-tests && yarn run compile && yarn run lint",
"release:major": "npm version major && git push && git push --tags",
"release:minor": "npm version minor && git push && git push --tags",
"release:patch": "npm version patch && git push && git push --tags",
"test": "jest",
"test:coverage": "jest --coverage",
"test:e2e": "node ./out/test/runTest.js",
"vscode:prepublish": "yarn run package",
"watch": "webpack --watch",
"watch-tests": "tsc -p -w . --outDir out"
}
}