-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
123 lines (123 loc) · 4 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
116
117
118
119
120
121
122
123
{
"name": "krl-officelite",
"displayName": "KUKA KRL OfficeLite",
"description": "KUKA KRL OfficeLite",
"version": "1.2.2",
"publisher": "krl-officelite",
"license": "MIT",
"engines": {
"vscode": "^1.62.0"
},
"categories": [
"Programming Languages",
"Formatters"
],
"repository": {
"type": "git",
"url": "https://github.com/danielmuellernavarro/krl-officelite.git"
},
"activationEvents": [
"onLanguage:krl"
],
"main": "./out/extension.js",
"icon": "images/icon.png",
"bugs": "https://github.com/danielmuellernavarro/krl-officelite/issues",
"contributes": {
"configuration": {
"title": "krl-officelite configuration",
"type": "object",
"properties": {
"krl-officelite.indentwidth": {
"type": "integer",
"default": 2,
"description": "Number of spaces used for indentation"
},
"krl-officelite.separateBeforeBlocks": {
"type": "boolean",
"default": false,
"description": "Add newlines before and before blocks (for, if, while, loop etc.)"
},
"krl-officelite.separateAfterBlocks": {
"type": "boolean",
"default": false,
"description": "Add newlines before and after blocks (for, if, while, loop etc.)"
},
"krl-officelite.pythonPath": {
"type": "string",
"default": "",
"description": "Optional custom path to python executable"
},
"krl-officelite.formatterPath": {
"type": "string",
"default": "",
"description": "Optional custom path to klr formatter"
},
"krl-officelite.indentAfterFunction": {
"type": "boolean",
"default": true,
"description": "Add indentation for functions"
},
"krl-officelite.indentAfterMainFunction": {
"type": "boolean",
"default": false,
"description": "If indent after function is true. Add indentation for the main function too"
}
}
},
"languages": [
{
"id": "krl",
"aliases": [
"KRL",
"krl"
],
"extensions": [
".dat",
".src",
".sub"
],
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "krl",
"scopeName": "source.krl",
"path": "./syntaxes/krl.tmLanguage.json"
}
],
"snippets": [
{
"language": "krl",
"path": "./snippets/krl.json"
}
]
},
"dependencies": {
"child_process": "^1.0.2",
"os": "^0.1.2",
"stream": "^0.0.2"
},
"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/glob": "^7.1.4",
"@types/mocha": "^9.0.0",
"@types/node": "14.x",
"@types/vscode": "^1.62.0",
"@typescript-eslint/eslint-plugin": "^5.1.0",
"@typescript-eslint/parser": "^5.1.0",
"@vscode/test-electron": "^1.6.2",
"esbuild": "^0.14.25",
"eslint": "^8.1.0",
"glob": "^7.1.7",
"mocha": "^9.1.3",
"typescript": "^4.4.4"
}
}