This repository has been archived by the owner on Sep 18, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
70 lines (70 loc) · 1.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
{
"name": "habitscript",
"displayName": "HabitScript",
"description": "Increase Your Productiviy by Tracking Your Coding Time",
"version": "1.1.5",
"publisher": "iliashaddad",
"keywords": [
"track coding time",
"coding time",
"productivity",
"challenges"
],
"engines": {
"vscode": "^1.34.0"
},
"categories": [
"Other"
],
"activationEvents": [
"*"
],
"main": "./extension.js",
"contributes": {
"commands": [
{
"command": "extension.openDashboard",
"title": "Open Dashboard File"
},
{
"command": "extension.auth",
"title": "Login To My HabitScript Account"
}
]
},
"scripts": {
"vscode:prepublish": "webpack --mode production",
"compile": "webpack --mode none",
"watch": "webpack --mode none --watch",
"test-compile": "tsc -p ./"
},
"devDependencies": {
"@types/mocha": "^2.2.42",
"@types/node": "^10.12.21",
"eslint": "^5.13.0",
"typescript": "^3.3.1",
"vscode": "^1.1.28",
"webpack": "^4.35.3",
"webpack-cli": "^3.3.5"
},
"dependencies": {
"lowdb": "^1.0.0",
"moment": "^2.24.0",
"moment-duration-format": "^2.3.2",
"moment-timezone": "^0.5.26",
"node-fetch": "^2.6.0",
"open": "^6.4.0",
"os": "^0.1.1",
"request": "^2.88.0"
},
"bugs": {
"url": "https://github.com/IliasHad/codabit_vscode/issues",
"email": "iliasshaddad2016@gmail.com"
},
"repository": {
"type": "git",
"url": "https://github.com/IliasHad/codabit_vscode.git"
},
"homepage": "https://github.com/IliasHad/codabit_vscode/blob/master/README.md",
"icon": "img/logo.png"
}