-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 975 Bytes
/
Copy pathpackage.json
File metadata and controls
42 lines (42 loc) · 975 Bytes
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
{
"name": "gsqlpad",
"version": "1.0.0",
"main": "index.js",
"repository": "git@github.com:leoelios/gsqlpad.git",
"author": "Leonardo Elias <leoelias02@hotmail.com>",
"license": "MIT",
"bin": {
"gsqlpad": "dist/index.js"
},
"pkg": {
"scripts": "dist/**/*.js",
"targets": [
"node14-linux-arm64",
"node18-macos-arm64",
"node18-win-arm64"
],
"outputPath": "bin"
},
"scripts": {
"dev": "nodemon src/index.ts",
"start": "tsc && node dist/index.js",
"start:mac": "tsc && yarn pkg . && bin/gsqlpad-node18-macos"
},
"devDependencies": {
"@types/cookie": "^0.5.4",
"@types/node": "^20.9.2",
"@types/ping": "^0.4.4",
"@types/yargs": "^17.0.31",
"nodemon": "^3.0.1",
"pkg": "^5.8.1",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
},
"dependencies": {
"axios": "0.27.2",
"cookie": "^0.6.0",
"ping": "^0.4.4",
"readline": "^1.3.0",
"yargs": "^17.7.2"
}
}