-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
75 lines (75 loc) · 2.26 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
{
"name": "vscode-aql",
"displayName": "AQL (ArangoDB Query Language) Syntax Highlighting and Language Server",
"description": "Syntax Highlighting and Language Server for ArangoDB Query Language (AQL) 🙌",
"version": "1.10.1",
"icon": "arangodb-logo.png",
"publisher": "monotykamary",
"engines": {
"vscode": "^1.75.0"
},
"main": "./client/out/extension",
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "mkdir -p client/out server/out && tsc -b client/tsconfig.json server/tsconfig.json --force",
"watch": "tsc -b -w",
"postinstall": "cd client && npm install && cd ../server && npm install && cd ..",
"release": "standard-version"
},
"categories": [
"Programming Languages"
],
"repository": {
"type": "git",
"url": "https://github.com/monotykamary/vscode-aql"
},
"activationEvents": [
"onLanguage:aql"
],
"contributes": {
"languages": [
{
"id": "aql",
"aliases": [
"AQL",
"aql"
],
"extensions": [
".aql"
],
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "aql",
"scopeName": "source.aql",
"path": "./syntaxes/aql.tmLanguage.json"
},
{
"injectTo": [
"source.js",
"source.ts",
"source.jsx",
"source.tsx",
"source.go",
"source.python"
],
"scopeName": "inline.aql",
"path": "./syntaxes/inline-aql.json",
"embeddedLanguages": {
"meta.embedded.block.aql": "aql"
}
}
]
},
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"husky": "^4.3.0",
"standard-version": "^9.5.0",
"@types/node": "^16.11.7",
"@types/vscode": "^1.75.0",
"typescript": "^5.0.4"
}
}