-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.14 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
{
"name": "@franknoh/pixivdl",
"version": "2.1.0",
"description": "pixiv downloader",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/franknoh/pixivdl.git"
},
"bugs": {
"url": "https://github.com/franknoh/pixivdl/issues"
},
"homepage": "https://github.com/franknoh/pixivdl#readme",
"author": "franknoh",
"license": "ISC",
"keywords": [
"pixiv",
"downloader"
],
"files": [
"dist/**/*"
],
"scripts": {
"test": "npm run build && node ./tests/test.js",
"build": "npm i && tsc",
"format": "prettier --write \"src/**/*.ts\"",
"lint": "tslint -p tsconfig.json"
},
"dependencies": {
"axios": "^0.27.2",
"cheerio": "^1.0.0-rc.12",
"cli-progress": "^3.11.2",
"generic-pool": "^3.8.2",
"path": "^0.12.7",
"selenium-webdriver": "^4.3.1"
},
"devDependencies": {
"@types/clear": "^0.1.2",
"@types/cli-progress": "^3.11.0",
"@types/figlet": "^1.5.4",
"@types/node": "^18.7.13",
"@types/selenium-webdriver": "^4.1.2",
"prettier": "^2.7.1",
"ts-node": "^10.9.1",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"typescript": "^4.7.4"
}
}