This repository was archived by the owner on Oct 8, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
126 lines (126 loc) · 3.03 KB
/
package.json
File metadata and controls
126 lines (126 loc) · 3.03 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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
{
"name": "voltdev",
"publisher": "larizzatg",
"displayName": "voltdev",
"description": "Virtual assistant for developers helping ease the burden of daily tasks",
"version": "0.2.1",
"repository": {
"type": "git",
"url": "https://github.com/larizzatg/voltdev"
},
"engines": {
"vscode": "^1.52.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onStartupFinished"
],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "voltdev.todo.new",
"category": "⚡ Voltdev",
"title": "Task -> New"
},
{
"command": "voltdev.todo.edit",
"category": "⚡ Voltdev",
"title": "Task -> Edit"
},
{
"command": "voltdev.todo.complete",
"category": "⚡ Voltdev",
"title": "Task -> Complete"
},
{
"command": "voltdev.todo.delete",
"category": "⚡ Voltdev",
"title": "Task -> Delete"
},
{
"command": "voltdev.work-session.start",
"category": "⚡ Voltdev",
"title": "Work Session -> Start"
},
{
"command": "voltdev.work-session.end",
"category": "⚡ Voltdev",
"title": "Work Session -> End"
},
{
"command": "voltdev.state.clear",
"category": "⚡ Voltdev",
"title": "Clear State"
},
{
"command": "voltdev.stack-overflow.search",
"category": "⚡ Voltdev",
"title": "Search in Stack Overflow"
},
{
"command": "voltdev.rest.open",
"category": "⚡ Voltdev",
"title": "Take a rest"
}
],
"menus": {
"editor/context": [
{
"command": "voltdev.stack-overflow.search",
"when": "editorHasSelection"
}
],
"commandPalette": [
{
"command": "voltdev.stack-overflow.search",
"when": "editorHasSelection"
},
{
"command": "voltdev.work-session.end",
"when": "voltdev:hasActiveWorkSession"
}
]
}
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"pretest": "npm run compile && npm run lint",
"lint": "eslint src --ext ts",
"test": "node ./out/test/runTest.js"
},
"devDependencies": {
"@types/glob": "^7.1.3",
"@types/mocha": "^8.0.4",
"@types/node": "^12.11.7",
"@types/uuid": "^8.3.0",
"@types/vscode": "^1.52.0",
"@typescript-eslint/eslint-plugin": "^4.9.0",
"@typescript-eslint/parser": "^4.9.0",
"eslint": "^7.15.0",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-prettier": "^3.3.1",
"glob": "^7.1.6",
"husky": "^4.3.8",
"lint-staged": "^10.5.3",
"mocha": "^8.1.3",
"prettier": "^2.2.1",
"typescript": "^4.1.2",
"vscode-test": "^1.4.1"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.ts": "eslint --cache --fix"
},
"dependencies": {
"uuid": "^8.3.2"
}
}