-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
103 lines (103 loc) · 2.24 KB
/
package.json
File metadata and controls
103 lines (103 loc) · 2.24 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
{
"name": "ziit",
"displayName": "Ziit",
"description": "The swiss army knive for coding time tracking.",
"publisher": "PandaDEV",
"version": "1.2.2",
"keywords": [
"ziit",
"vscode",
"extension",
"api",
"visualization",
"education",
"analytics",
"code",
"code time",
"codetime",
"flow",
"focus",
"metrics",
"productivity",
"time",
"timer",
"time tracker",
"time tracking",
"tracker",
"tracking",
"worktime"
],
"homepage": "https://pandadev.net",
"bugs": {
"url": "https://github.com/0pandadev/ziit-vscode/issues",
"email": "contact@pandadev.net"
},
"icon": "images/ziit-logo.png",
"engines": {
"vscode": "^1.100.0"
},
"files": [
"dist",
"images",
"package.json",
"README.md",
"LICENSE"
],
"categories": [
"Visualization",
"Education"
],
"activationEvents": [
"onStartupFinished",
"onDebug"
],
"main": "./dist/extension.js",
"contributes": {
"commands": [
{
"command": "ziit.setApiKey",
"title": "Ziit: Set API Key"
},
{
"command": "ziit.setBaseUrl",
"title": "Ziit: Set Instance"
},
{
"command": "ziit.openDashboard",
"title": "Ziit: Open Dashboard"
},
{
"command": "ziit.showOutput",
"title": "Ziit: Show Output"
}
],
"configuration": {
"title": "Ziit",
"properties": {
"ziit.apiKey": {
"type": "string",
"description": "API key for Ziit server authentication"
},
"ziit.baseUrl": {
"type": "string",
"default": "https://ziit.app",
"description": "Base URL for the Ziit server instance"
}
}
}
},
"scripts": {
"build": "esbuild ./src/extension.ts --bundle --outdir=dist --external:vscode --format=cjs --platform=node",
"dev": "esbuild ./src/extension.ts --bundle --outdir=dist --external:vscode --format=cjs --platform=node --watch"
},
"devDependencies": {
"@types/node": "24.10.2",
"@types/vscode": "1.100.0",
"esbuild": "0.27.1"
},
"repository": {
"type": "git",
"url": "https://github.com/0pandadev/ziit-vscode.git"
},
"license": "GPL-3.0"
}