-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
44 lines (44 loc) · 996 Bytes
/
package.json
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
{
"name": "oblique-stratergies",
"displayName": "oblique-stratergies",
"description": "A Code extension which displays a random oblique stratergy in the status bar.",
"galleryBanner.color": "292929",
"version": "1.0.0",
"publisher": "dcrgll",
"engines": {
"vscode": "^1.65.0"
},
"categories": [
"Other"
],
"activationEvents": [
"*"
],
"main": "./src/extension.js",
"contributes": {
"commands": [
{
"command": "oblique-stratergies.helloWorld",
"title": "Hello World"
}
]
},
"scripts": {
"lint": "eslint .",
"pretest": "yarn run lint",
"test": "node ./test/runTest.js"
},
"devDependencies": {
"@types/glob": "^8.0.0",
"@types/mocha": "^9.1.0",
"@types/node": "20.x",
"@types/vscode": "^1.76.0",
"@vscode/test-electron": "^2.3.0",
"eslint": "^8.38.0",
"glob": "^9.3.2",
"husky": "^8.0.3",
"mocha": "^9.2.1",
"prettier": "^2.8.8",
"typescript": "^5.0.4"
}
}