-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
72 lines (72 loc) · 1.9 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
{
"name": "wit-idl",
"displayName": "WIT IDL",
"description": "WebAssembly Interface Type (WIT) IDL Extension for VSCode",
"private": true,
"version": "0.3.1",
"publisher": "bytecodealliance",
"icon": "images/wit-icon.png",
"repository": {
"type": "git",
"url": "https://github.com/bytecodealliance/vscode-wit.git"
},
"license": "Apache-2.0 WITH LLVM-exception",
"scripts": {
"install-plugin": "npm run package && code --install-extension wit-idl.vsix",
"package": "vsce package -o wit-idl.vsix",
"update-snapshot": "vscode-tmgrammar-snap --updateSnapshot --scope 'source.wit' 'tests/grammar/integration/*'",
"test-grammar": "vscode-tmgrammar-test -c --grammar syntaxes/wit.tmLanguage.json 'tests/grammar/unit/*'",
"test": "npm run test-grammar",
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"lint": "eslint src --ext ts"
},
"engines": {
"vscode": "^1.75.0"
},
"categories": [
"Programming Languages",
"Snippets"
],
"main": "./out/extension.js",
"contributes": {
"languages": [
{
"id": "wit",
"aliases": [
"WIT",
"wit",
"WebAssembly Interface Type"
],
"extensions": [
".wit"
],
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "wit",
"scopeName": "source.wit",
"path": "./syntaxes/wit.tmLanguage.json"
}
],
"snippets": [
{
"language": "wit",
"path": "./snippets.json"
}
]
},
"devDependencies": {
"@types/node": "^20.5.8",
"@types/vscode": "^1.75.0",
"@typescript-eslint/eslint-plugin": "^6.5.0",
"@typescript-eslint/parser": "^6.5.0",
"@vscode/vsce": "^2.19.0",
"eslint": "^8.48.0",
"typescript": "^5.2.2",
"vscode-tmgrammar-test": "^0.1.1"
}
}