-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
99 lines (99 loc) · 3.23 KB
/
package.json
File metadata and controls
99 lines (99 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
{
"name": "statice",
"displayName": "Statice",
"publisher": "devpotatoes",
"icon": "./src/assets/icon.png",
"description": "Statice is a time-tracking extension for Visual Studio Code to explore your coding habits, visualize your stats, and boost your productivity.",
"version": "2.4.0",
"repository": {
"type": "git",
"url": "https://github.com/devpotatoes/statice"
},
"pricing": "Free",
"engines": {
"vscode": "^1.98.0"
},
"license": "SEE LICENSE IN LICENSE",
"categories": [
"Other",
"Data Science",
"Visualization"
],
"keywords": [
"Productivity",
"Statistics",
"Time-tracking",
"Dashboard",
"Insights"
],
"activationEvents": [
"onStartupFinished"
],
"main": "./out/extension.js",
"contributes": {
"configuration": {
"title": "Statice",
"properties": {
"statice.theme": {
"type": "string",
"description": "Select your Statice theme.",
"default": "Dark",
"enum": [
"Light",
"Dark"
]
},
"statice.notifications": {
"type": "boolean",
"description": "Enable notifications.",
"default": true
},
"statice.backups": {
"type": "boolean",
"description": "Enable backups. (Recommended)",
"default": true
},
"statice.trackOnlyWhenFocused": {
"type": "boolean",
"description": "Track time only when VS Code is focused.",
"default": false
}
}
},
"viewsContainers": {
"activitybar": [
{
"id": "staticeContainer",
"title": "Statice",
"icon": "./src/assets/icon.svg"
}
]
},
"views": {
"staticeContainer": [
{
"id": "staticeView",
"name": ""
}
]
},
"viewsWelcome": [
{
"view": "staticeView",
"contents": "Welcome to Statice !\n\nEasily explore and visualize your stats.\n\n[Open Dashboard](command:staticeOpenDashboard)\n\nCustomize Statice to suit your workflow and preferences.\n[Settings](command:staticeOpenSettings)\n\nLearn more about how to use Statice.\n[Documentation](command:staticeOpenDocumentation)\n\nSupport this extension by starring the project.\n[$(star-full) Statice Repository](https://github.com/devpotatoes/statice)\nYour feedback and support help it grow !"
}
],
"commands": []
},
"scripts": {
"vscode:prepublish": "npm run compile",
"package": "vsce package",
"compile": "tsc -p ./",
"dev": "tsc -p ./ --watch"
},
"devDependencies": {
"@types/node": "20.x",
"@types/vscode": "^1.98.0",
"typescript": "^5.7.3"
}
}