forked from tale/logos-vscode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
104 lines (104 loc) · 2.02 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "llvm-logos-vscode",
"version": "1.0.0",
"publisher": "cxnder",
"engines": {
"vscode": "^1.66.0"
},
"license": "MIT",
"displayName": "LLVM-Logos Language Support",
"description": "LLVM-Logos basic language support for VSCode. For advanced language features, use the clangd plugin in conjunction with LLVM-Logos. This plugin is modified from https://github.com/tale/logos-vscode.git",
"categories": [
"Programming Languages",
"Snippets"
],
"repository": {
"type": "git",
"url": "https://github.com/DragonBuild/llvm-logos-vscode.git"
},
"keywords": [
"objective-c",
"objective-cpp",
"logos",
"jailbreak",
"tweaks",
"theos",
"dragon",
"monkeydev",
"xcode"
],
"galleryBanner": {
"color": "#44275c",
"theme": "dark"
},
"main": "./dist/extension.js",
"browser": "./dist/extension.js",
"contributes": {
"languages": [
{
"id": "logos",
"aliases": [
"Logos",
"logos"
],
"extensions": [
".x",
".xm",
".xi",
".xmi"
],
"configuration": "./assets/language-configuration.json",
"icon": {
"dark": "./assets/logos.svg",
"light": "./assets/logos.svg"
}
},
{
"id": "objective-c",
"aliases": [
"Objective-C",
"llvm-logos",
"LLVM-Logos"
],
"extensions": [
".m",
".mm"
],
"configuration": "./assets/llvm-language-configuration.json",
"icon": {
"dark": "./assets/logos.svg",
"light": "./assets/logos.svg"
}
}
],
"grammars": [
{
"language": "logos",
"scopeName": "source.logos",
"path": "./assets/logos.tmLanguage.json"
},
{
"language": "Objective-C",
"scopeName": "source.llvm-logos",
"path": "./assets/llvm-logos.tmLanguage.json"
}
]
},
"activationEvents": [
"onLanguage:logos"
],
"qna": false,
"extensionKind": [
"ui",
"workspace"
],
"icon": "assets/icon.png",
"scripts": {
"watch": "tsc --watch",
"vscode:prepublish": "tsc"
},
"devDependencies": {
"@types/vscode": "^1.66.0",
"typescript": "^4.6.3"
}
}