-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 1.98 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 1.98 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
70
71
72
73
74
75
76
77
{
"name": "superofficedx-vscode-crmscript",
"publisher": "superoffice",
"displayName": "TypeScript for SuperOffice",
"description": "",
"qna": "https://github.com/SuperOffice/language-tools/issues",
"bugs": {
"url": "https://github.com/SuperOffice/language-tools/issues"
},
"version": "0.0.1",
"repository": {
"type": "git",
"url": "https://github.com/SuperOffice/language-tools.git"
},
"engines": {
"vscode": "^1.95.0"
},
"categories": [
"Other"
],
"activationEvents": [],
"main": "./out/superofficedx-vscode-crmscript/src/main.cjs",
"contributes": {
"languages": [
{
"id": "crmscript",
"extensions": [
".crmscript"
],
"configuration": "./syntaxes/crmscript-language-configuration.json",
"icon": {
"light": "/resources/logo.svg",
"dark": "/resources/logo.svg"
}
},
{
"id": "crmscript-definition",
"extensions": [
".crmscript-definition"
],
"configuration": "./syntaxes/crmscript-language-configuration.json",
"icon": {
"light": "/resources/logo.svg",
"dark": "/resources/logo.svg"
}
}
],
"grammars": [
{
"language": "crmscript",
"scopeName": "source.crmscript",
"path": "./syntaxes/crmscript.tmLanguage.json"
},
{
"language": "crmscript-definition",
"scopeName": "source.crmscript-definition",
"path": "./syntaxes/crmscript-definition.tmLanguage.json"
}
]
},
"scripts": {
"preinstall": "npx only-allow pnpm",
"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",
"build": "node ./scripts/esbuild.mjs"
},
"dependencies": {
"vscode-languageclient": "~9.0.1"
},
"devDependencies": {
"esbuild": "*"
}
}