-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 914 Bytes
/
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
{
"name": "tool-auto-lms-ptit",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"build": "tsup && tsc-alias",
"dev": "set NODE_ENV=development&&tsup --watch --onSuccess \"npm run start\"",
"start": "npm run build&&node dist/app.js",
"typecheck": "tsc --noEmit",
"clear:build": "rimraf dist",
"clean": "rimraf dist && rimraf node_modules",
"clear:force": "rimraf *.js --force"
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"dependencies": {
"@google/generative-ai": "^0.19.0",
"cli-color": "^2.0.4",
"dotenv": "^16.4.5",
"inquirer": "^10.2.2",
"puppeteer": "^23.3.0",
"puppeteer-extra": "^3.3.6",
"puppeteer-extra-plugin-stealth": "^2.11.2"
},
"devDependencies": {
"@types/cli-color": "^2.0.6",
"rimraf": "^6.0.1",
"tsc-alias": "^1.8.10",
"tsup": "^8.2.4",
"typescript": "latest"
}
}