-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 2.6 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
{
"name": "sqltools-firebird-driver",
"displayName": "SQLTools Firebird",
"description": "SQLTools Firebird",
"version": "0.0.6",
"engines": {
"vscode": "^1.72.0"
},
"publisher": "fzhem",
"license": "MIT",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/fzhem/sqltools-firebird-driver.git"
},
"bugs": {
"url": "https://github.com/fzhem/sqltools-firebird-driver/issues"
},
"keywords": [
"sqltools-driver",
"firebird"
],
"galleryBanner": {
"theme": "light",
"color": "#ffffff"
},
"icon": "icons/ds-firebird-logo.png",
"categories": [
"Programming Languages",
"Snippets",
"Formatters",
"Other"
],
"extensionDependencies": [
"mtxr.sqltools"
],
"activationEvents": [
"*",
"onLanguage:sql",
"onCommand:sqltools.*"
],
"main": "./out/extension.js",
"scripts": {
"clean": "rimraf out --glob *.vsix",
"predev": "npm run clean",
"dev": "npm run watch",
"esbuild": "esbuild --bundle --external:vscode --platform=node --tsconfig=./tsconfig.json --log-level=info --color=true --format=cjs",
"compile:ext": "npm run esbuild -- ./src/extension.ts --outfile=./out/extension.js --define:process.env.PRODUCT=\"'ext'\"",
"compile:ls": "npm run esbuild -- ./src/ls/plugin.ts --outfile=./out/ls/plugin.js --define:process.env.PRODUCT=\"'ls'\"",
"watch": "concurrently \"npm:watch:*\"",
"watch:ext": "npm run compile:ext -- --define:process.env.NODE_ENV=\"'development'\" --sourcemap --watch",
"watch:ls": "npm run compile:ls -- --define:process.env.NODE_ENV=\"'development'\" --sourcemap --watch",
"prebuild": "npm run clean",
"build": "cross-env NODE_ENV=production concurrently \"npm:build:*\"",
"build:ext": "npm run compile:ext -- --define:process.env.NODE_ENV=\"'production'\" --minify",
"build:ls": "npm run compile:ls -- --define:process.env.NODE_ENV=\"'production'\" --minify",
"prepackage": "npm run build"
},
"dependencies": {
"@sqltools/base-driver": "latest",
"@sqltools/types": "latest",
"node-firebird": "^1.1.9",
"uuid": "^11.0.3"
},
"devDependencies": {
"@types/node": "^22.5.4",
"@types/uuid": "^10.0.0",
"@types/vscode": "^1.72.0",
"@vscode/vsce": "^3.1.0",
"concurrently": "^9.0.0",
"cross-env": "^7.0.3",
"esbuild": "^0.24.0",
"rimraf": "^6.0.1",
"typescript": "^5.6.2"
}
}