-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 968 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 968 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
{
"name": "auth_fun",
"version": "1.0.0",
"main": "index.js",
"bin": "dist/index.js",
"scripts": {
"build:ts": "tsc",
"build:bundle": "npx esbuild dist/index.js --bundle --platform=node --outfile=release/bundle.js",
"build:pkg": "npx pkg release/bundle.js --targets node18-win-x64 --output release/my-app.exe",
"build": "npm run build:ts '&&' npm run build:bundle '&&' npm run build:pkg"
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"pkg": {
"scripts": [
"dist/**/*.js",
"node_modules/axios/dist/**/*.{js,json}"
],
"targets": [
"node18-win-x64"
]
},
"dependencies": {
"@types/readline-sync": "^1.4.8",
"axios": "^1.9.0",
"gramjs-sqlitesession": "^1.1.1",
"https-proxy-agent": "^7.0.6",
"input": "^1.0.1",
"readline-sync": "^1.4.10",
"telegram": "^2.26.22",
"ws": "^8.18.2"
},
"devDependencies": {
"nexe": "^5.0.0-beta.4"
}
}