-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.83 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
{
"name": "agent",
"version": "1.0.0",
"main": "build/index.js",
"author": "Neuro Nexul",
"license": "MIT",
"scripts": {
"build": "esbuild index.ts --bundle --platform=node --target=node21 --outdir=build --minify",
"start": "node build/index.js",
"dev": "nodemon index.ts",
"pkg:encv": "node ./extras/version_encryption.js",
"pkg:sea-config": "node --experimental-sea-config sea-config.json",
"pkg:postject": "postject dist/agent.exe NODE_SEA_BLOB dist/sea-prep.blob --sentinel-fuse NODE_SEA_FUSE_fce680ab2cc467b6e072b8b5df1996b2 --overwrite",
"pkg:cp-node:win": "node -e \"require('fs').cpSync(process.execPath, 'dist/agent.exe', { recursive: true })\"",
"pkg:sign:win": "signtool remove /s dist/agent.exe",
"pkg:win": "yarn build && yarn pkg:encv && yarn pkg:cp-node:win && yarn pkg:sign:win && yarn pkg:sea-config && yarn pkg:postject",
"pkg:cp-node:mac": "node -e \"require('fs').cpSync(process.execPath, 'dist/agent', { recursive: true })\"",
"pkg:sign:mac": "codesign --remove-signature dist/agent",
"pkg:mac": "yarn build && yarn pkg:encv && yarn pkg:cp-node:mac && yarn pkg:sign:mac && yarn pkg:sea-config && yarn pkg:postject"
},
"engines": {
"node": ">=21.7.0"
},
"dependencies": {
"@google/generative-ai": "^0.5.0",
"chalk": "4.1.2",
"cheerio": "^1.0.0-rc.12",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"inquirer": "^10.2.2",
"node-html-markdown": "^1.3.0",
"socket.io": "^4.7.5",
"zod": "^3.22.4"
},
"devDependencies": {
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/node": "^20.12.2",
"esbuild": "^0.20.2",
"nodemon": "^3.1.0",
"postject": "^1.0.0-alpha.6",
"ts-node": "^10.9.2",
"tsc": "^2.0.4",
"typescript": "^5.4.3"
},
"resolutions": {
"@types/mime": "3.0.4"
}
}