-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.35 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.35 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
{
"name": "syntax-gaslighting",
"publisher": "niiju",
"displayName": "Syntax Gaslighting",
"description": "Gaslight yourself while coding to improve your mental strength.",
"version": "0.0.3",
"icon": "assets/icon.png",
"repository": {
"type": "git",
"url": "https://github.com/eNiiju/syntax-gaslighting"
},
"engines": {
"vscode": "^1.60.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onStartupFinished"
],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "syntax-gaslighting.toggle",
"title": "Syntax Gaslighting: Toggle syntax gaslighting"
},
{
"command": "syntax-gaslighting.editChance",
"title": "Syntax Gaslighting: Edit syntax gaslighting chance"
}
]
},
"scripts": {
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"vscode:prepublish": "npm run compile",
"vscode:package": "vsce package"
},
"devDependencies": {
"@types/vscode": "^1.60.0",
"@types/node": "^16.11.7",
"@typescript-eslint/eslint-plugin": "^5.42.0",
"@typescript-eslint/parser": "^5.42.0",
"eslint": "^8.26.0",
"typescript": "^4.8.4"
}
}