-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
111 lines (111 loc) · 2.84 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
{
"name": "vs-code-powerschool",
"displayName": "VS Code - PowerSchool",
"description": "Syntax highlighting and linting for PowerSchool TLIST_SQL tags with i18n support",
"version": "1.0.0",
"publisher": "BenjaminKemp",
"license": "MIT",
"engines": {
"vscode": "^1.95.0"
},
"categories": [
"Programming Languages",
"Snippets",
"Linters"
],
"icon": "images/icon.png",
"main": "./out/extension.js",
"activationEvents": [
"onLanguage:html",
"workspaceContains:**/*.properties"
],
"contributes": {
"configuration": {
"type": "object",
"title": "PowerSchool I18n Settings",
"properties": {
"powerschoolI18n.messageKeysPath": {
"type": "string",
"default": "src/powerschool/MessageKeys",
"description": "Path to the directory containing .properties files for translations."
}
}
},
"languages": [
{
"id": "tlist_sql",
"configuration": "./language-configuration.json",
"aliases": [
"TLIST_SQL"
]
}
],
"snippets": [
{
"language": "tlist_sql",
"path": "./snippets/snippets.json"
},
{
"language": "javascript",
"path": "./snippets/snippets.json"
},
{
"language": "html",
"path": "./snippets/snippets.json"
}
],
"grammars": [
{
"language": "tlist_sql",
"scopeName": "source.tlist_sql",
"path": "./syntaxes/tlist_sql.tmLanguage.json"
},
{
"scopeName": "injection.tlist_sql",
"path": "./syntaxes/injection.tlist_sql.tmLanguage.json",
"injectTo": [
"source.css",
"source.js",
"source.json",
"text.html.derivative",
"text.xml"
]
}
]
},
"scripts": {
"vscode:prepublish": "pnpm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"pretest": "pnpm run compile && pnpm run lint",
"lint": "eslint . --ext .ts",
"test": "node ./out/test/runTest.js",
"package": "vsce package",
"publish": "vsce publish"
},
"devDependencies": {
"@types/mocha": "^10.0.6",
"@types/node": "^20.10.5",
"@types/vscode": "^1.95.0",
"@typescript-eslint/eslint-plugin": "^6.15.0",
"@typescript-eslint/parser": "^6.15.0",
"@vscode/test-electron": "^2.3.8",
"@vscode/vsce": "^2.22.0",
"eslint": "^8.56.0",
"mocha": "^10.2.0",
"typescript": "^5.3.3"
},
"dependencies": {
"glob": "^11.0.0",
"sql-parser": "^0.5.0"
},
"bugs": {
"url": "https://github.com/bjkemp/vs-code-powerschool/issues",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/bjkemp/vs-code-powerschool.git"
},
"homepage": "https://github.com/bjkemp/vs-code-powerschool/blob/main/README.md"
}