-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
90 lines (90 loc) · 1.95 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
{
"name": "ulka-language-support",
"displayName": "Ulka",
"description": "Syntax highlighter and Formatter for .ulka files",
"version": "1.1.1",
"engines": {
"vscode": "^1.47.0"
},
"publisher": "Roshan",
"author": {
"name": "Roshan Acharya",
"email": "[email protected]"
},
"main": "./out/extension.js",
"icon": "images/logo.png",
"categories": [
"Programming Languages"
],
"activationEvents": [
"onLanguage:ulka"
],
"repository": {
"type": "git",
"url": "https://github.com/ulkajs/vscode-ulka.git"
},
"bugs": {
"url": "https://github.com/ulkajs/vscode-ulka/issues"
},
"homepage": "https://github.com/ulkajs/vscode-ulka#readme",
"license": "MIT",
"contributes": {
"configurationDefaults": {
"emmet.includeLanguages": {
"ulka": "html"
},
"material-icon-theme.files.associations": {
"*.ulka": "html"
},
"vsicons.associations.files": [
{
"icon": "html",
"extensions": [
"ulka"
],
"format": "svg"
}
]
},
"languages": [
{
"id": "ulka",
"aliases": [
"ulka",
"Ulka"
],
"extensions": [
".ulka"
],
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "ulka",
"scopeName": "source.ulka",
"path": "./syntaxes/ulka.tmLanguage.json",
"embeddedLanguages": {
"meta.embedded.block.javascript": "javascript"
}
},
{
"path": "./syntaxes/injection.json",
"scopeName": "js-html.injection",
"injectTo": [
"source.ulka"
]
}
]
},
"dependencies": {
"@ulkajs/format": "^0.0.4",
"prettier": "^2.8.8"
},
"devDependencies": {
"@types/node": "^16.11.12",
"@types/prettier": "^2.4.2",
"typescript": "^5.1.6",
"vscode": "^1.1.37"
}
}