-
Notifications
You must be signed in to change notification settings - Fork 78
Expand file tree
/
Copy pathpackage.json
More file actions
25 lines (25 loc) · 813 Bytes
/
package.json
File metadata and controls
25 lines (25 loc) · 813 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
{
"name": "puppeteer-demo",
"private": true,
"version": "1.0.0",
"main": "index.js",
"type": "module",
"scripts": {
"test": "node -e \"const major = Number(process.versions.node.split('.')[0]); if (major < 18) { console.error('\\x1b[31m❌ Node.js version 18 or higher is required to run tests. Current: ' + process.version + '\\x1b[0m'); process.exit(1); }\" && vitest run ./tests/connectivity.test.ts"
},
"engines": {
"node": ">=18"
},
"author": "",
"license": "MIT",
"devDependencies": {
"@azure/identity": "4.5.0",
"@midscene/core": "latest",
"@midscene/shared": "latest",
"dotenv": "^16.4.5",
"openai": "4.57.1",
"puppeteer": "^23.4.0",
"tsx": "4.20.1",
"vitest": "^2.1.8"
}
}