forked from sleutho/tcl
-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
102 lines (102 loc) · 2.96 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
{
"name": "tcl",
"displayName": "Tcl",
"description": "Tcl language support",
"version": "0.4.2",
"keywords": [
"tcl",
"tk"
],
"publisher": "bitwisecook",
"bugs": {
"url": "https://github.com/bitwisecook/tcl.git/LICENSE"
},
"license": "MIT",
"icon": "images/Tcl-powered.png",
"engines": {
"vscode": "^1.75.1"
},
"repository": {
"type": "git",
"url": "https://github.com/bitwisecook/tcl.git"
},
"categories": [
"Formatters",
"Other",
"Programming Languages",
"Snippets"
],
"activationEvents": [
"onLanguage:tcl"
],
"main": "./out/extension.js",
"contributes": {
"languages": [
{
"id": "tcl",
"aliases": [
"Tcl",
"tcl"
],
"extensions": [
".tcl",
".tm",
".test"
],
"configuration": "./language-configuration.json"
}
],
"commands": [
{
"command": "tcl.escapeToQuotedTcl",
"title": "Escape Selections to Tcl Quoted String",
"category": "Tcl"
}
],
"grammars": [
{
"language": "tcl",
"scopeName": "source.tcl",
"path": "./out/syntaxes/tcl.json"
}
],
"snippets": [
{
"language": "tcl",
"path": "./snippets/tcl.json"
}
]
},
"scripts": {
"vscode:prepublish": "webpack --mode production && npx js-yaml syntaxes/tcl.tmlanguage.yaml > out/syntaxes/tcl.json",
"webpack": "webpack --mode development && npx js-yaml syntaxes/tcl.tmlanguage.yaml > out/syntaxes/tcl.json",
"webpack-dev": "webpack --mode development --watch && npx js-yaml syntaxes/tcl.tmlanguage.yaml > out/syntaxes/tcl.json",
"test-compile": "tsc -p ./ && npx js-yaml syntaxes/tcl.tmlanguage.yaml > out/syntaxes/tcl.json",
"watch": "tsc -watch -p ./",
"lint": "eslint src --ext ts",
"pretest": "npm run compile && npm run lint",
"test": "node ./out/test/runTest.js"
},
"devDependencies": {
"@types/glob": "^8.0.1",
"@types/mocha": "^10.0.1",
"@types/node": "^18.14.0",
"@types/vscode": "^1.75.1",
"@typescript-eslint/eslint-plugin": "^5.52.0",
"@typescript-eslint/parser": "^5.52.0",
"@vscode/test-electron": "^2.2.3",
"eslint": "^8.34.0",
"eslint-config-prettier": "^8.6.0",
"glob": "^8.1.0",
"mocha": "^10.2.0",
"prettier": "^2.8.4",
"ts-loader": "^9.4.2",
"typescript": "^4.9.5",
"vsce": "^2.15.0",
"webpack": "^5.76.0",
"webpack-cli": "^5.0.1"
},
"dependencies": {
"js-yaml": "^4.1.0"
}
}