-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
115 lines (115 loc) · 2.62 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
105
106
107
108
109
110
111
112
113
114
115
{
"name": "vsclay",
"icon": "assets/clayoven.png",
"author": {
"name": "Ramkumar Ramachandra",
"email": "[email protected]",
"url": "https://artagnon.com"
},
"publisher": "artagnon",
"repository": {
"type": "git",
"url": "https://github.com/artagnon/vsclay"
},
"license": "CC0-1.0",
"displayName": "vsclay",
"description": "Syntax definition for claytext",
"version": "0.4.9",
"engines": {
"vscode": "^1.92.0"
},
"main": "./dist/extension.js",
"activationEvents": [
"onLanguage:claytext"
],
"categories": [
"Programming Languages"
],
"contributes": {
"languages": [
{
"id": "claytext",
"extensions": [
".clay"
],
"configuration": "claytext-configuration.json"
}
],
"grammars": [
{
"language": "claytext",
"scopeName": "text.claytext",
"path": "./syntax/claytext.json"
},
{
"scopeName": "latex.injection",
"path": "./syntax/latexInjection.json",
"injectTo": [
"text.claytext"
],
"embeddedLanguages": {
"meta.embedded.latex": "latex"
}
},
{
"scopeName": "coq.injection",
"path": "./syntax/coqInjection.json",
"injectTo": [
"text.claytext"
],
"embeddedLanguages": {
"meta.embedded.coq": "coq"
}
},
{
"scopeName": "cpp.injection",
"path": "./syntax/cppInjection.json",
"injectTo": [
"text.claytext"
],
"embeddedLanguages": {
"meta.embedded.cpp": "cpp"
}
},
{
"scopeName": "rs.injection",
"path": "./syntax/rsInjection.json",
"injectTo": [
"text.claytext"
],
"embeddedLanguages": {
"meta.embedded.rs": "rust"
}
},
{
"scopeName": "hs.injection",
"path": "./syntax/hsInjection.json",
"injectTo": [
"text.claytext"
],
"embeddedLanguages": {
"meta.embedded.hs": "haskell"
}
}
]
},
"extensionDependencies": [
"gruntfuggly.triggertaskonsave"
],
"scripts": {
"vscode:prepublish": "yarn package",
"compile": "yarn webpack",
"watch": "yarn webpack --watch",
"package": "yarn webpack --mode production --devtool hidden-source-map"
},
"devDependencies": {
"@types/node": "^22.1.0",
"@types/vscode": "^1.92.0",
"ts-loader": "^9.5.1",
"typescript": "^5.5.4",
"vsce": "^2.15.0",
"webpack": "^5.93.0",
"webpack-cli": "^5.1.4"
},
"packageManager": "[email protected]"
}