-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
79 lines (79 loc) · 2.08 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
{
"name": "sqltools-intersystems-driver",
"displayName": "SQLTools InterSystems IRIS",
"description": "SQLTools Driver for InterSystems IRIS",
"version": "0.1.8-SNAPSHOT",
"engines": {
"vscode": "^1.66.0"
},
"publisher": "intersystems-community",
"license": "MIT",
"homepage": "https://github.com/intersystems-community/sqltools-intersystems-driver#readme",
"repository": {
"type": "git",
"url": "https://github.com/intersystems-community/sqltools-intersystems-driver.git"
},
"bugs": {
"url": "https://github.com/intersystems-community/sqltools-intersystems-driver/issues"
},
"galleryBanner": {
"color": "#2E2A90",
"theme": "dark"
},
"icon": "icons/sqltools.png",
"scripts": {
"clean": "rimraf -rf out dist *.vsix",
"vscode:prepublish": "webpack --mode production",
"webpack": "webpack --mode development",
"webpack-dev": "webpack --mode development --watch",
"test-compile": "tsc -p ./",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"package": "vsce package -o sqltools-intersystems-driver.vsix",
"lint": "",
"test": ""
},
"keywords": [
"intersystems-iris-driver",
"intersystems",
"sqltools-driver",
"sql"
],
"categories": [
"Programming Languages",
"Snippets",
"Formatters",
"Other"
],
"extensionDependencies": [
"mtxr.sqltools"
],
"activationEvents": [
"onStartupFinished",
"onLanguage:sql",
"onCommand:sqltools.*"
],
"main": "./dist/extension.js",
"ls": "./dist/ls/plugin.js",
"dependencies": {
"@babel/core": "^7.14.3",
"@sqltools/base-driver": "^0.1.10",
"@sqltools/types": "^0.1.5",
"@types/request": "^2.48.5",
"@types/request-promise": "^4.1.47",
"request": "^2.88.2",
"request-promise": "^4.2.6",
"uuid": "^8.3.2"
},
"devDependencies": {
"@babel/preset-env": "^7.14.2",
"@types/node": "^14.17.0",
"@types/vscode": "^1.66.0",
"@vscode/vsce": "^2.19.0",
"rimraf": "^3.0.2",
"ts-loader": "^9.2.1",
"typescript": "^4.9.5",
"webpack": "^5.94.0",
"webpack-cli": "^4.7.0"
}
}