forked from iamtheyammer/fetch-toyota-service-manuals
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.27 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.27 KB
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
{
"name": "fetch-toyota-service-manusls",
"version": "1.0.0",
"description": "Downloads HTML and PDF versions of Toyota Service Manuals from TIS",
"main": "src/index.ts",
"repository": "https://github.com/iamtheyammer/fetch-toyota-service-manuals",
"author": "Sam <iamtheyammer@gmail.com>",
"license": "GPL-3.0",
"private": false,
"dependencies": {
"axios": "^0.27.2",
"axios-cookiejar-support": "^4.0.1",
"command-line-args": "^5.2.1",
"command-line-usage": "^6.1.3",
"dayjs": "^1.11.2",
"playwright": "^1.22.2",
"tough-cookie": "^4.0.0",
"xml-js": "^1.6.11"
},
"devDependencies": {
"@types/command-line-args": "^5.2.0",
"@types/command-line-usage": "^5.0.2",
"@types/node": "^17.0.35",
"@types/qs": "^6.9.7",
"@types/tough-cookie": "^4.0.2",
"nodemon": "^2.0.16",
"prettier": "^2.6.2",
"ts-node": "^10.7.0",
"typescript": "^4.6.4"
},
"scripts": {
"start": "ts-node src/index.ts",
"start:inspect": "NODE_TLS_REJECT_UNAUTHORIZED=0 node -r ts-node/register --inspect-brk src/index.ts",
"format": "prettier --write src/**/*.ts",
"playwright-setup": "playwright install chromium && playwright install-deps chromium",
"watch": "NODE_TLS_REJECT_UNAUTHORIZED=0 nodemon src/index.ts"
}
}