-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
111 lines (111 loc) · 2.49 KB
/
package.json
File metadata and controls
111 lines (111 loc) · 2.49 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
{
"name": "taskmanager-vscode",
"displayName": "TaskManager",
"description": "Task management extension with file tracking and cloud synchronization. Create, organize, and sync tasks across devices with offline support.",
"version": "1.4.2",
"publisher": "taskmanager",
"engines": {
"vscode": "^1.80.0"
},
"categories": [
"Other",
"Productivity"
],
"keywords": [
"task",
"todo",
"productivity",
"management",
"sync",
"file-tracking",
"offline"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/taskmanager/vscode-extension"
},
"homepage": "https://github.com/taskmanager/vscode-extension",
"bugs": {
"url": "https://github.com/taskmanager/vscode-extension/issues"
},
"activationEvents": [
"onStartupFinished"
],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "tmOpenPanel",
"title": "Open TaskManager",
"icon": "$(checklist)"
},
{
"command": "tmSync",
"title": "Sync with Server",
"icon": "$(sync)"
},
{
"command": "tmLogin",
"title": "Login to TaskManager",
"icon": "$(sign-in)"
},
{
"command": "tmRegister",
"title": "Register to TaskManager",
"icon": "$(person-add)"
}
],
"viewsContainers": {
"activitybar": [
{
"id": "taskmanager",
"title": "TaskManager",
"icon": "resources/icon.svg"
}
]
},
"views": {
"taskmanager": [
{
"type": "webview",
"id": "taskmanagerSidebar",
"name": "TaskManager"
}
]
},
"configuration": {
"title": "TaskManager",
"properties": {
"taskmanager.apiUrl": {
"type": "string",
"default": "https://hjmvhbdp-8080.euw.devtunnels.ms",
"description": "Backend API server URL"
}
}
}
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"package": "vsce package --allow-missing-repository --no-yarn"
},
"devDependencies": {
"@types/node": "^20.19.27",
"@types/vscode": "^1.80.0",
"@vscode/vsce": "^3.7.1",
"typescript": "^5.0.0",
"webpack": "^5.104.1",
"webpack-cli": "^6.0.1"
},
"dependencies": {
"axios": "^1.6.0"
},
"bundledDependencies": [
"axios"
],
"bundleDependencies": [
"axios"
]
}