-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
60 lines (60 loc) · 1.21 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
{
"name": "amanga",
"version": "0.11.2",
"description": "Manga Downloader",
"author": "mino",
"repository": "minosss/amanga",
"main": "dist",
"types": "dist",
"license": "MIT",
"prettier": "@yme/prettier-config",
"scripts": {
"build": "del-cli dist && tsc",
"docs:dev": "vuepress dev docs",
"docs:build": "vuepress build docs"
},
"files": [
"dist"
],
"dependencies": {
"cheerio": "1.0.0-rc.10",
"crypto-js": "4.1.1",
"esprima": "4.0.1",
"got": "^9.6.0",
"lz-string": "1.4.4"
},
"keywords": [
"manga"
],
"devDependencies": {
"@types/cheerio": "^0.22.30",
"@types/crypto-js": "4.0.2",
"@types/esprima": "^4.0.2",
"@types/global-agent": "^2.1.1",
"@types/got": "^9.6.12",
"@types/lz-string": "^1.3.33",
"@types/node": "^14.17.21",
"@yme/prettier-config": "^0.1.0",
"@yme/tsconfig": "^0.1.0",
"del-cli": "^4.0.1",
"global-agent": "^3.0.0",
"husky": "^7.0.2",
"lint-staged": "^11.2.0",
"pinyin": "^2.9.1",
"prettier": "^2.4.1",
"ts-node": "^10.2.1",
"typescript": "^4.4.3",
"vuepress": "^1.5.2"
},
"lint-staged": {
"*.{ts}": [
"prettier --parser=typescript --write"
],
"*.{js,json}": [
"prettier --write"
]
},
"engines": {
"node": ">=12.0"
}
}