-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
62 lines (62 loc) · 1.53 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
54
55
56
57
58
59
60
61
62
{
"name": "book-spider",
"version": "1.5.0",
"description": "a tool for downloading book",
"keywords": [
"spider",
"book"
],
"homepage": "https://github.com/Cansiny0320/book-spider#readme",
"bugs": "https://github.com/Cansiny0320/book-spider/issues",
"repository": {
"type": "git",
"url": "git+https://github.com/Cansiny0320/book-spider.git"
},
"license": "MIT",
"author": "Cansiny0320 <[email protected]>",
"sideEffects": false,
"type": "module",
"main": "./dist/index.mjs",
"module": "./dist/index.mjs",
"bin": {
"bs": "bin/cli.mjs"
},
"files": [
"dist"
],
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"check-source": "esno ./scripts/checkSource.ts",
"prepublishOnly": "nr build",
"release": "bumpp && npm publish",
"start": "esno src/cli.ts",
"typecheck": "tsc --noEmit",
"lint": "eslint",
"lint:fix": "eslint --fix"
},
"dependencies": {
"@cansiny0320/async-extra": "^0.2.1",
"axios": "^0.27.2",
"cac": "^6.7.12",
"cheerio": "^1.0.0-rc.10",
"core-js": "^3.25.0",
"iconv-lite": "^0.6.3",
"mri": "^1.2.0",
"signale": "^1.4.0"
},
"devDependencies": {
"@antfu/eslint-config": "^0.26.1",
"@swc/core": "^1.2.244",
"@types/cheerio": "^0.22.31",
"@types/node": "^18.7.13",
"@types/optimist": "^0.0.30",
"@types/signale": "^1.4.4",
"bumpp": "^8.2.1",
"eslint": "^8.22.0",
"esno": "^0.16.3",
"tsup": "^6.2.3",
"typescript": "^4.8.2"
},
"packageManager": "[email protected]"
}