-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) · 2.2 KB
/
package.json
File metadata and controls
97 lines (97 loc) · 2.2 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "kpl-linter",
"displayName": "kpl-linter",
"description": "KPL Linting and Syntax Highlighting",
"version": "1.0.0",
"author": "Cwooper",
"publisher": "CwooperDev",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/Cwooper/kpl-linter.git"
},
"bugs": {
"url": "https://github.com/Cwooper/kpl-linter/issues"
},
"homepage": "https://github.com/Cwooper/kpl-linter#readme",
"icon": "assets/extension-icon.png",
"keywords": [
"kpl",
"kernel programming language",
"blitz assembly",
"syntax highlighting"
],
"engines": {
"vscode": "^1.96.0"
},
"categories": [
"Programming Languages"
],
"contributes": {
"languages": [
{
"id": "kpl",
"aliases": [
"kpl",
"Kernel Programming Language"
],
"extensions": [
".kpl",
".k",
".h"
],
"configuration": "./language-configuration-kpl.json"
},
{
"id": "blitz-asm",
"aliases": [
"blitz-asm",
"Blitz Assembly"
],
"extensions": [
".s"
],
"configuration": "./language-configuration-asm.json"
}
],
"grammars": [
{
"language": "kpl",
"scopeName": "source.kpl",
"path": "./syntaxes/kpl.tmLanguage.json"
},
{
"language": "blitz-asm",
"scopeName": "source.blitz-asm",
"path": "./syntaxes/blitz-asm.tmLanguage.json"
}
],
"configurationDefaults": {
"[blitz-asm]": {
"editor.tabSize": 8
}
}
},
"main": "./out/extension.js",
"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",
"package": "vsce package",
"publish": "vsce publish"
},
"devDependencies": {
"@types/vscode": "^1.96.0",
"@types/node": "^16.x",
"@typescript-eslint/eslint-plugin": "^6.x",
"@typescript-eslint/parser": "^6.x",
"eslint": "^8.x",
"typescript": "^5.x"
},
"activationEvents": [
"onLanguage:blitz-asm",
"onLanguage:kpl"
]
}