-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 933 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 933 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
{
"name": "kameleo-nodejs-examples",
"description": "Various examples of using the Kameleo API",
"type": "module",
"engines": {
"node": "^20 || >=22"
},
"scripts": {
"type-check": "tsc",
"lint": "eslint",
"lint:fix": "eslint --fix",
"lint:strict": "eslint --max-warnings=0"
},
"author": "Kameleo Team",
"license": "ISC",
"dependencies": {
"@kameleo/local-api-client": "file:..",
"playwright": "^1.57.0",
"puppeteer": "^24.39.0",
"random-int": "^3.1.0",
"randomstring": "^1.3.1",
"selenium-webdriver": "^4.41.0"
},
"devDependencies": {
"@eslint/js": "9.39.2",
"@types/node": "^20",
"@types/randomstring": "^1.3.0",
"@types/selenium-webdriver": "^4.35.2",
"eslint": "9.39.2",
"eslint-config-prettier": "10.1.8",
"eslint-plugin-prettier": "5.5.5",
"prettier": "3.8.1",
"typescript": "5.9.3",
"typescript-eslint": "8.54.0"
}
}