-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.32 KB
/
Copy pathpackage.json
File metadata and controls
61 lines (61 loc) · 1.32 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
{
"name": "fontit",
"displayName": "FontIt",
"description": "Change editor font family easily from the command palette",
"version": "0.0.7",
"engines": {
"vscode": "^1.60.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onCommand:fontit.changeFont"
],
"main": "./out/extension.js",
"publisher": "najmiter",
"repository": {
"type": "git",
"url": "https://github.com/najmiter/fontit.git"
},
"icon": "images/icon.png",
"pricing": "Free",
"contributes": {
"commands": [
{
"command": "fontit.changeFont",
"title": "FontIt: Change Editor Font"
}
]
},
"keywords": [
"font",
"font-family",
"fontit",
"font",
"editor",
"vscode",
"extension",
"change-font"
],
"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/node": "^14.x",
"@types/vscode": "^1.60.0",
"@typescript-eslint/eslint-plugin": "^5.30.0",
"@typescript-eslint/parser": "^5.30.0",
"eslint": "^8.18.0",
"typescript": "^4.7.4",
"vscode-test": "^1.6.1"
},
"dependencies": {
"font-list": "^1.5.1"
}
}