-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.65 KB
/
Copy pathpackage.json
File metadata and controls
69 lines (69 loc) · 1.65 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
{
"name": "fonty",
"displayName": "Fonty",
"description": "Change VSCode's app font",
"version": "0.0.1",
"icon": "assets/logo-small.jpg",
"author": {
"name": "piscopancer",
"url": "https://github.com/piscopancer"
},
"repository": {
"url": "https://github.com/piscopancer/fonty"
},
"type": "module",
"main": "dist/extension.js",
"scripts": {
"build": "node esbuild-build.mjs",
"watch": "node esbuild-watch.mjs",
"ext:build": "pnpm build && npx vsce package",
"ext:install": "code --install-extension fonty-0.0.1.vsix",
"ext:all": "pnpm ext:build && pnpm ext:install"
},
"engines": {
"vscode": "^1.101.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onStartupFinished"
],
"contributes": {
"configuration": {
"title": "Fonty",
"properties": {
"fonty.fontFamily": {
"type": "string",
"default": "default",
"markdownDescription": "`default` would use the editor's default font. Leave empty to disable. Run `fonty.applyFont` to apply."
}
}
},
"commands": [
{
"command": "fonty.setFont",
"title": "Fonty: Set font"
},
{
"command": "fonty.applyFont",
"title": "Fonty: Apply font"
},
{
"command": "fonty.applyDefaultFont",
"title": "Fonty: Apply default (editor) font"
},
{
"command": "fonty.unsetFont",
"title": "Fonty: Unset font"
}
]
},
"devDependencies": {
"@types/node": "20.x",
"@types/vscode": "^1.101.0",
"esbuild": "^0.25.5",
"node-html-parser": "^7.0.1",
"typescript": "^5.7.2"
}
}