-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.34 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
51
52
53
{
"name": "@unsync/grdf-client",
"type": "module",
"version": "1.1.15",
"license": "MIT",
"repository": "unsync/grdf-client",
"main": "dist/index.js",
"files": [
"dist"
],
"engines": {
"node": ">=18"
},
"scripts": {
"dev": "tsx src/run.ts",
"build": "tsc",
"checkdeps": "ncu",
"checkdeps:apply": "ncu -u",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"prepare": "husky",
"release:major": "npm version -m 'release:major' major",
"release:minor": "npm version -m 'release:minor' minor",
"release:patch": "npm version -m 'release:patch' patch",
"test": "exit 0"
},
"dependencies": {
"@unsync/nodejs-tools": "^1.0.5",
"dayjs": "^1.11.12",
"dotenv": "^16.4.5",
"html-to-text": "^9.0.5",
"puppeteer": "^23.0.2",
"puppeteer-extra": "^3.3.6",
"puppeteer-extra-plugin-recaptcha": "^3.6.8",
"puppeteer-extra-plugin-stealth": "^2.11.2"
},
"devDependencies": {
"@types/html-to-text": "^9.0.4",
"@types/lodash": "^4.17.0",
"@types/node": "^20.12.7",
"@unsync/eslint": "^1.0.22",
"@unsync/tsconfig": "^1.0.12",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"npm-check-updates": "^16.14.18",
"ts-node": "^10.9.2",
"tsx": "^4.7.2",
"typescript": "^5.3.3"
},
"lint-staged": {
"*.{js,ts,vue,json}": "eslint --fix ."
}
}