-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
89 lines (89 loc) · 2.25 KB
/
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
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
{
"name": "font-switcher",
"displayName": "Font Switcher",
"description": "Quickly configure your font settings.",
"version": "4.1.0",
"publisher": "evan-buss",
"engines": {
"vscode": "^1.22.0"
},
"author": {
"name": "Evan Buss",
"email": "[email protected]",
"url": "https://github.com/evan-buss"
},
"license": "MIT",
"categories": [
"Other"
],
"keywords": [
"fonts",
"customization",
"vscode"
],
"extensionKind": [
"ui"
],
"repository": {
"type": "git",
"url": "https://github.com/evan-buss/font-switcher"
},
"icon": "icon.png",
"activationEvents": [
"onCommand:font-switcher.switchFont",
"onCommand:font-switcher.setFontSize",
"onCommand:font-switcher.switchTerminalFont",
"onCommand:font-switcher.setTerminalFontSize"
],
"main": "./dist/extension",
"browser": "./dist/extension",
"contributes": {
"commands": [
{
"command": "font-switcher.switchFont",
"title": "Switch Font"
},
{
"command": "font-switcher.setFontSize",
"title": "Font Size"
},
{
"command": "font-switcher.switchTerminalFont",
"title": "Switch Terminal Font"
},
{
"command": "font-switcher.setTerminalFontSize",
"title": "Terminal Font Size"
}
]
},
"scripts": {
"vscode:prepublish": "npm run package",
"compile": "webpack",
"watch": "webpack --watch",
"package": "webpack --mode production --devtool hidden-source-map",
"test-compile": "tsc -p ./",
"test-watch": "tsc -watch -p ./",
"pretest": "npm run test-compile && npm run lint",
"lint": "eslint src --ext ts",
"test": "node ./out/test/runTest.js",
"browser": "vscode-test-web --extensionDevelopmentPath=. ."
},
"devDependencies": {
"@types/glob": "^7.2.0",
"@types/mocha": "^9.1.1",
"@types/node": "^18.0.5",
"@types/vscode": "^1.22.0",
"@typescript-eslint/eslint-plugin": "^5.30.6",
"@typescript-eslint/parser": "^5.30.6",
"@vscode/test-web": "^0.0.27",
"eslint": "^8.20.0",
"glob": "^8.0.3",
"mocha": "^10.0.0",
"ts-loader": "^9.3.1",
"typescript": "^4.7.4",
"vscode-test": "^1.6.1",
"webpack": "^5.73.0",
"webpack-cli": "^4.10.0"
}
}