-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 1.89 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
{
"name": "dl-vampire",
"version": "2.1.2",
"description": "download file like a vampire",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/",
"package.json",
"README.md",
"CHANGELOG.md",
"LICENSE"
],
"scripts": {
"prepare": "husky install",
"test": "vitest --run",
"test:dev": "vitest",
"test-cover": "vitest --run --coverage",
"build": "tsup",
"prepublishOnly": "npm run build",
"dev": "tsup --watch"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/magicdawn/dl-vampire.git"
},
"keywords": [
"dl",
"download",
"fs",
"vampire",
"download-manager"
],
"author": "magicdawn",
"license": "MIT",
"bugs": {
"url": "https://github.com/magicdawn/dl-vampire/issues"
},
"homepage": "https://github.com/magicdawn/dl-vampire#readme",
"dependencies": {
"debug": "^4.3.5",
"fs-extra": "^11.2.0",
"got": "^14.4.1",
"lodash": "^4.17.21",
"ms": "^2.1.3",
"promise.retry": "^2.0.4",
"proxy-agent": "^6.4.0"
},
"devDependencies": {
"@magicdawn/eslint-config": "^0.1.0",
"@magicdawn/prettier-config": "^0.0.4",
"@types/chai": "^4.3.16",
"@types/debug": "^4.1.12",
"@types/fs-extra": "^11.0.4",
"@types/lodash": "^4.17.6",
"@types/ms": "^0.7.34",
"@types/node": "^20.14.9",
"@vitest/coverage-v8": "^1.6.0",
"eslint": "^9.6.0",
"husky": "^9.0.11",
"lint-staged": "^15",
"prettier": "^3.3.2",
"tsup": "^8.1.0",
"typescript": "^5.5.3",
"vitest": "^1.6.0"
},
"lint-staged": {
"*.{ts,tsx,js,jsx,md}": [
"prettier --write"
]
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"packageManager": "[email protected]+sha512.f549b8a52c9d2b8536762f99c0722205efc5af913e77835dbccc3b0b0b2ca9e7dc8022b78062c17291c48e88749c70ce88eb5a74f1fa8c4bf5e18bb46c8bd83a"
}