-
Notifications
You must be signed in to change notification settings - Fork 57
/
Copy pathpackage.json
123 lines (123 loc) · 3.19 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
{
"name": "weread-spy",
"description": "weread spy",
"version": "0.7.6",
"author": "magicdawn",
"type": "module",
"main": "dist/bin.js",
"bin": {
"weread-spy": "dist/bin.js"
},
"files": [
"dist",
"assets",
"CHANGELOG.md"
],
"bugs": {
"url": "https://github.com/magicdawn/weread-spy/issues"
},
"engines": {
"node": ">=18"
},
"homepage": "https://github.com/magicdawn/weread-spy#readme",
"keywords": [
"download",
"weread"
],
"scripts": {
"prepare": "husky install",
"_dev": "tsc -w --incremental",
"_build:tsc": "rm -rf lib; rm tsconfig.tsbuildinfo; tsc",
"_build": "./scripts/build.ts",
"dev": "NODE_ENV=development tsup --watch",
"build": "NODE_ENV=production tsup",
"typecheck": "tsc --noEmit",
"test": "mocha",
"test-cover": "nyc --reporter=lcov --reporter=text mocha",
"prepublishOnly": "pnpm build"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/magicdawn/weread-spy.git"
},
"dependencies": {
"@magicdawn/prettier-config": "^0.0.2",
"adm-zip": "^0.5.10",
"cheerio": "1.0.0-rc.12",
"clipanion": "^3.2.1",
"comlink": "^4.4.1",
"debug": "^4.3.4",
"delay": "^6.0.0",
"dl-vampire": "^2.0.0",
"env-paths": "^3.0.0",
"epubcheck-assets": "^5.1.0",
"escape-string-regexp": "^5.0.0",
"esm-utils": "^4.1.2",
"fast-glob": "^3.3.1",
"filenamify": "^6.0.0",
"fs-extra": "^11.1.1",
"inquirer": "9",
"jszip": "^3.10.1",
"lodash-es": "^4.17.21",
"mime": "^3.0.0",
"mimetype": "^0.0.8",
"moment": "^2.29.4",
"ms": "^2.1.3",
"nunjucks": "^3.2.4",
"pkg-up": "^4.0.0",
"prettier": "^3.0.3",
"promise.map": "^0.5.0",
"puppeteer": "^21.4.0",
"puppeteer-intercept-and-modify-requests": "^1.2.2",
"sharp": "^0.32.6",
"tslib": "^2.6.2",
"type-fest": "^4.5.0",
"urijs": "^1.19.11"
},
"devDependencies": {
"@magicdawn/eslint-config": "^0.1.0",
"@types/adm-zip": "^0.5.3",
"@types/debug": "^4.1.10",
"@types/fs-extra": "^11.0.3",
"@types/inquirer": "^9.0.6",
"@types/jake": "^0.0.35",
"@types/lodash-es": "^4.17.10",
"@types/mime": "^3.0.3",
"@types/mocha": "^10.0.3",
"@types/ms": "^0.7.33",
"@types/node": "^20.8.7",
"@types/nunjucks": "^3.2.5",
"@types/prettier": "^2.7.3",
"@types/sharp": "^0.31.1",
"@types/urijs": "^1.19.22",
"@typescript-eslint/eslint-plugin": "^6.8.0",
"@typescript-eslint/parser": "^6.8.0",
"esbuild": "^0.19.5",
"eslint": "^8.52.0",
"eslint-config-prettier": "^9.0.0",
"husky": "^8.0.3",
"lint-staged": "^15.0.2",
"mocha": "^10.2.0",
"should": "^13.2.3",
"tsup": "^7.2.0",
"typescript": "^5.2.2",
"why-is-node-running": "^2.2.2"
},
"pkg": {
"assets": [
"assets/templates/"
],
"scripts": [
"lib/**/*.worker.js"
]
},
"lint-staged": {
"*.{js,jsx,ts,tsx,less,md}": [
"prettier --write"
]
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"packageManager": "[email protected]+sha512.c8180b3fbe4e4bca02c94234717896b5529740a6cbadf19fa78254270403ea2f27d4e1d46a08a0f56c89b63dc8ebfd3ee53326da720273794e6200fcf0d184ab"
}