-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
127 lines (127 loc) · 4.06 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
{
"name": "testaustime",
"displayName": "Testaustime",
"version": "0.1.1",
"description": "The VSCode extension of Testaustime",
"main": "dist/index.js",
"publisher": "testausserveri-ry",
"icon": "icon.png",
"repository": {
"type": "git",
"url": "git+https://github.com/Testaustime/testaustime-vscode.git"
},
"keywords": [
"testaustime"
],
"scripts": {
"vscode:prepublish": "yarn --ignore-engines build-base --minify",
"build-base": "esbuild ./src/index.ts --bundle --outfile=dist/index.js --external:vscode --format=cjs --platform=node",
"build": "yarn --ignore-engines build-base --sourcemap",
"watch": "yarn --ignore-engines build-base --sourcemap --watch",
"lint": "eslint src --ext ts",
"bundle": "vsce package",
"deploy": "vsce publish"
},
"engines": {
"vscode": "^1.71.0"
},
"vsce": {
"useYarn": true
},
"contributors": [
"Antti <antti@antti.codes>",
"raikasdev",
"PEEVEEz"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/Testaustime/testaustime-vscode/issues"
},
"homepage": "https://testaustime.fi",
"categories": [
"Other"
],
"activationEvents": [
"onStartupFinished"
],
"contributes": {
"commands": [
{
"command": "testaustime.setapikey",
"title": "Testaustime: Log in manually using API key"
},
{
"command": "testaustime.openauthorize",
"title": "Testaustime: Log in using browser"
}
],
"walkthroughs": [
{
"id": "testaustime",
"title": "Get Started with Testaustime Visual Studio Code extension",
"description": "Log in to the extension and start tracking your coding time",
"steps": [
{
"id": "log-in",
"title": "Log In",
"description": "You must have a Testaustime account to track your coding time. You can register at https://testaustime.fi/register.\n[Log in with your browser](command:testaustime.openauthorize)\nIf the browser login does not work for you, you can manually retrieve a token from the testaustime.fi settings page and enter it in the add-on:\n[Log in using a token](command:testaustime.setapikey)",
"completionEvents": [
"onContext:testaustime.apikey"
],
"media": {
"image": "media/hero.png",
"altText": "Visual Studio Code editor on left side with extension enabled. Testaustime.fi statistics page on the right."
}
},
{
"id": "code",
"title": "Code",
"description": "Green check mark in status bar indicates that Testaustime is actively tracking your coding session. \nClick on the indicator to open testaustime.fi in your browser.",
"completionEvents": [],
"media": {
"image": "media/hero.png",
"altText": "Visual Studio Code editor on left side with extension enabled. Testaustime.fi statistics page on the right."
}
}
]
}
],
"configuration": {
"title": "Testaustime",
"properties": {
"testaustime.apiEndpoint": {
"type": "string",
"default": "https://api.testaustime.fi",
"description": "API endpoint for Testaustime"
},
"testaustime.hiddenPaths": {
"type": "array",
"items": {
"type": "string"
},
"default": [],
"description": "The names of projects under these paths will be hashed in the format of \"hidden-xxxxxxx\""
},
"testaustime.disabled": {
"type": "boolean",
"default": false,
"description": "Disable Testaustime"
}
}
}
},
"dependencies": {
"axios": "^0.21.1",
"date-fns": "^2.29.1"
},
"devDependencies": {
"@types/node": "18.8.2",
"@types/vscode": "^1.65.0",
"@typescript-eslint/eslint-plugin": "^5.12.1",
"@typescript-eslint/parser": "^5.12.1",
"esbuild": "^0.15.10",
"eslint": "^8.9.0",
"typescript": "^4.5.5",
"vsce": "^2.11.0"
}
}