-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.59 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.59 KB
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
{
"name": "sql2excel",
"version": "2.1.5",
"description": "SQL 쿼리 결과를 엑셀 파일로 저장하는 도구 (시트별 쿼리, 변수, XML/JSON 지원)",
"main": "app.js",
"scripts": {
"start": "node app.js",
"start:kr": "echo Please use 실행하기.bat for Korean language",
"export": "node src/excel-cli.js export",
"validate": "node src/excel-cli.js validate",
"list-dbs": "node src/excel-cli.js list-dbs",
"help": "node src/excel-cli.js help",
"build": "node -e \"const pkg = require('./package.json'); const { execSync } = require('child_process'); execSync(`pkg app.js --public --compress GZip --target node18-win-x64 --output dist/sql2excel-v${pkg.version}.exe`, { stdio: 'inherit' });\"",
"release": "node create-release.js"
},
"bin": {
"sql2excel": "app.js"
},
"pkg": {
"scripts": [
"app.js",
"src/**/*.js"
],
"assets": [
"queries/**/*.xml",
"queries/**/*.json",
"config/**/*.json",
"templates/**/*.xml",
".env",
"node_modules/mssql/**/*",
"node_modules/tedious/**/*",
"node_modules/mysql2/**/*",
"node_modules/pg/**/*",
"node_modules/better-sqlite3/**/*",
"node_modules/oracledb/**/*"
],
"targets": [
"node18-win-x64"
],
"outputPath": "dist"
},
"dependencies": {
"better-sqlite3": "^11.10.0",
"exceljs": "^4.3.0",
"json5": "^2.2.3",
"mssql": "^10.0.0",
"mysql2": "^3.4.0",
"pg": "^8.16.3",
"oracledb": "^6.6.0",
"xml2js": "^0.6.2",
"yargs": "^17.7.2"
},
"devDependencies": {
"pkg": "^5.8.1"
}
}