node-oracledb-client/package.json

26 lines
572 B
JSON
Raw Normal View History

2025-08-19 13:43:21 +02:00
{
"name": "node-oracledb-cli",
"version": "1.0.0",
2025-08-26 12:39:50 +02:00
"author": "Jan Hamal Dvořák <mordae@anilinux.org>",
"license": "MIT",
"description": "Command-line Oracle Client",
2025-08-19 13:43:21 +02:00
"scripts": {
"build": "tsc",
2025-11-30 18:21:12 +01:00
"start": "node dist/index.js"
2025-08-19 13:43:21 +02:00
},
"bin": {
"node-oracledb-cli": "dist/index.js"
},
"devDependencies": {
2025-08-26 12:39:50 +02:00
"@types/command-line-args": "^5.2.3",
2025-08-19 13:43:21 +02:00
"@types/oracledb": "^6.9.1",
"tsx": "^4.20.4",
"typescript": "^5.9.2"
},
"dependencies": {
2025-08-26 12:39:50 +02:00
"command-line-args": "^6.0.1",
2025-08-19 13:43:21 +02:00
"find-up": "^7.0.0",
"oracledb": "^6.8.0"
}
}