-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
125 lines (125 loc) · 4.05 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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
{
"name": "autoit",
"icon": "images/logo.svg.png",
"displayName": "AutoIt",
"description": "Syntax highlighting for AutoIt2 and AutoIt3",
"version": "1.2.0",
"publisher": "genius257",
"repository": {
"type": "git",
"url": "https://github.com/genius257/vscode-autoit"
},
"engines": {
"vscode": "^1.61.0"
},
"activationEvents": [
"onLanguage:au3"
],
"browser": "./client/dist/main",
"categories": [
"Programming Languages"
],
"contributes": {
"configuration": {
"title": "AutoIt",
"properties": {
"autoit3.installDir": {
"scope": "window",
"type": "string",
"default": null,
"description": "The path to a AutoIt3 installation directory."
},
"autoit3.userDefinedLibraries": {
"scope": "window",
"type": "array",
"default": [],
"description": "Array of directories that should be searched for files when intellisense are resolving #include's in addition to the standard locations."
},
"autoit3.version": {
"scope": "window",
"type": "string",
"default": "3.3.14.5",
"enum": [
"3.3.14.5"
],
"description": "The target AutoIt3 version for the intellisense."
}
}
},
"languages": [
{
"id": "au3",
"aliases": [
"AutoIt3",
"au3"
],
"extensions": [
"au3"
],
"configuration": "./au3-language-configuration.json",
"icon": {
"light": "./images/file.svg",
"dark": "./images/file.svg"
}
},
{
"id": "aut",
"aliases": [
"AutoIt2",
"aut"
],
"extensions": [
"aut"
],
"configuration": "./aut-language-configuration.json",
"icon": {
"light": "./images/au2.file.svg",
"dark": "./images/au2.file.svg"
}
}
],
"grammars": [
{
"language": "au3",
"scopeName": "source.au3",
"path": "./syntaxes/au3.tmLanguage.json"
},
{
"language": "aut",
"scopeName": "source.aut",
"path": "./syntaxes/aut.tmLanguage.json"
}
]
},
"dependencies": {
"autoit3-pegjs": "git+https://github.com/genius257/autoit3-pegjs.git#1.0.3"
},
"devDependencies": {
"@types/jest": "^29.1.2",
"@types/mocha": "^8.2.2",
"@typescript-eslint/eslint-plugin": "^4.23.0",
"@typescript-eslint/parser": "^4.23.0",
"@vscode/test-web": "^0.0.22",
"@vscode/vsce": "^2.16.0",
"eslint": "^7.26.0",
"jest": "^29.1.2",
"mocha": "^8.3.2",
"path-browserify": "^1.0.1",
"svg-png-converter": "0.0.9",
"ts-jest": "^29.0.3",
"ts-loader": "^9.4.1",
"typescript": "^4.8.4",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0"
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "webpack",
"watch": "webpack --watch",
"package": "webpack --mode production --devtool hidden-source-map",
"lint": "eslint ./client/src ./server/src --ext .ts,.tsx",
"postinstall": "cd client && npm install && cd ../server && npm install && cd ..",
"chrome": "npm run compile && vscode-test-web --browserType=chromium --extensionDevelopmentPath=. ./test-data",
"test": "jest"
}
}