-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
100 lines (100 loc) · 2.42 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
{
"name": "leektool",
"displayName": "leektool",
"description": "Sync with Leekwars",
"version": "0.0.1",
"engines": {
"vscode": "^1.58.0"
},
"categories": [
"Programming Languages",
"Other"
],
"activationEvents": [
"onLanguage:leekscript v1.1",
"onCommand:leektool.downloadRemoteFiles"
],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "leektool.downloadRemoteFiles",
"title": "Download remote files"
}
],
"configuration": {
"title": "LeekTool",
"properties": {
"leektool.username": {
"type": "string",
"default": "",
"description": "Your leekwars username."
},
"leektool.password": {
"type": "string",
"default": "",
"description": "Your leekwars password."
}
}
},
"iconThemes": [
{
"id": "leektool",
"label": "LeekTool",
"path": "./fileicons/leekwars-icon-theme.json"
}
],
"languages": [
{
"id": "leekscript v1.1",
"extensions": [
".leek",
".lk"
],
"aliases": [
"LeekScript",
"LeekScript V1.1"
],
"configuration": "./src/language-configuration.json"
}
],
"grammars": [
{
"language": "leekscript v1.1",
"scopeName": "source.leekscript.v1.1",
"path": "./src/syntaxes/leekscript.tmLanguage.json"
}
]
},
"scripts": {
"vscode:prepublish": "yarn run compile",
"compile": "tsc -p ./ && tsc-alias -p tsconfig.json && cp -r ./src/images ./out/images",
"pretest": "yarn run compile && yarn run lint",
"lint": "eslint src --ext ts",
"test": "node ./out/test/runTest.js"
},
"devDependencies": {
"@types/glob": "^7.1.3",
"@types/mocha": "^8.2.2",
"@types/node": "14.x",
"@types/tough-cookie": "^4.0.1",
"@types/vscode": "^1.60.0",
"@typescript-eslint/eslint-plugin": "^4.26.0",
"@typescript-eslint/parser": "^4.26.0",
"eslint": "^7.27.0",
"eslint-config-prettier": "^6.10.1",
"eslint-plugin-prettier": "^3.1.2",
"glob": "^7.1.7",
"mocha": "^8.4.0",
"prettier": "^2.0.3",
"sharp": "^0.29.1",
"tsc-alias": "^1.3.9",
"typescript": "^4.3.2",
"vscode-test": "^1.5.2"
},
"extensionDependencies": [],
"dependencies": {
"got": "^11.8.2",
"tough-cookie": "^4.0.0"
}
}