-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
35 lines (35 loc) · 893 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
35
{
"name": "webautoutils",
"version": "0.2.1",
"description": "Utility Tools for Web Automation",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"scripts": {
"start": "ts-node src/index.ts",
"build": "tsup src/index.ts --format cjs,esm --dts",
"publish": "pnpm publish --access public",
"release": "pnpm run build && changeset version && changeset publish",
"lint": "tsc",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"Web Automation",
"Web Scraping",
"Playwright"
],
"author": "",
"license": "ISC",
"dependencies": {
"lodash": "^4.17.21",
"playwright": "^1.36.2",
"ts-node": "^10.9.1",
"ytmanager": "^1.5.0"
},
"devDependencies": {
"@changesets/cli": "^2.26.2",
"@types/node": "^20.4.7",
"tsup": "^7.2.0",
"typescript": "^5.1.6"
}
}