This repository was archived by the owner on May 6, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
120 lines (120 loc) · 3.23 KB
/
package.json
File metadata and controls
120 lines (120 loc) · 3.23 KB
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
{
"name": "swdc-100-days-of-code",
"displayName": "100 Days of Code",
"description": "100 Days of Code helps you reach your goals and complete the #100DaysOfCode Challenge.",
"version": "1.2.1",
"publisher": "softwaredotcom",
"icon": "resources/100-days-of-code-icon.png",
"scripts": {
"compile": "tsc -p ./",
"lint": "tslint -p ./",
"watch": "tsc -watch -p ./",
"build": "vsce package --yarn",
"vscode:prepublish": "webpack --mode production",
"webpack": "webpack --mode development",
"webpack-dev": "webpack --mode development --watch",
"test-compile": "tsc -p ./",
"pretest": "yarn run compile && yarn run lint",
"test": "node ./out/test/runTest.js"
},
"extensionKind": [
"ui",
"workspace"
],
"engines": {
"vscode": "^1.52.0"
},
"preview": false,
"categories": [
"Other"
],
"galleryBanner": {
"color": "#384356",
"theme": "dark"
},
"repository": {
"type": "git",
"url": "https://github.com/swdotcom/swdc-vscode-100-days-of-code"
},
"license": "SEE LICENSE IN LICENSE",
"keywords": [
"productivity",
"100 days of code",
"code time",
"challenge",
"time tracking"
],
"activationEvents": [
"onStartupFinished"
],
"main": "./dist/extension",
"contributes": {
"commands": [
{
"command": "DoC.ViewReadme",
"title": "100 Days of Code: View Readme"
},
{
"command": "DoC.viewLogs",
"title": "100 Days of Code: View Logs"
},
{
"command": "DoC.addLog",
"title": "100 Days of Code: Add Daily Progress Log"
},
{
"command": "DoC.viewDashboard",
"title": "100 Days of Code: View Dashboard"
},
{
"command": "DoC.viewMilestones",
"title": "100 Days of Code: View Milestones"
}
],
"viewsContainers": {
"activitybar": [
{
"id": "100-days-of-code",
"title": "100 Days of Code",
"icon": "resources/dark/milestones.svg"
}
]
},
"views": {
"100-days-of-code": [
{
"id": "100-days-of-code-view",
"name": ""
}
]
}
},
"devDependencies": {
"@types/glob": "^7.1.1",
"@types/mocha": "^7.0.1",
"@types/node": "^12.11.7",
"@types/vscode": "^1.35.0",
"@typescript-eslint/eslint-plugin": "^2.18.0",
"@typescript-eslint/parser": "^2.18.0",
"copy-webpack-plugin": "^7.0.0",
"eslint": "^6.8.0",
"glob": "^7.1.6",
"mocha": "^7.0.1",
"ts-loader": "^8.0.12",
"typescript": "^3.7.5",
"vscode-test": "^1.3.0",
"webpack": "^5.10.1",
"webpack-cli": "^4.2.0"
},
"dependencies": {
"axios": "^0.21.1",
"file-it": "^1.0.26",
"moment-timezone": "^0.5.28",
"open": "^7.0.3",
"query-string": "^6.13.7",
"swdc-tracker": "^1.3.3"
},
"extensionDependencies": [
"softwaredotcom.swdc-vscode"
]
}