-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
72 lines (72 loc) · 1.63 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
{
"name": "nurlresolver",
"version": "3.16.4",
"description": "url resolver for node",
"type": "module",
"exports": "./dist/app.js",
"types": "./dist/app.d.ts",
"engines": {
"node": ">=14.16"
},
"author": "mnsrulz",
"license": "MIT",
"dependencies": {
"debug": "^4.3.4",
"got": "^12.6.1",
"m3u8": "0.0.10",
"psl": "^1.9.0",
"scrape-it": "^6.1.0",
"tough-cookie": "^4.1.2",
"unpacker": "^1.0.1"
},
"devDependencies": {
"@ava/typescript": "^4.1.0",
"@types/debug": "^4.1.12",
"@types/psl": "^1.1.0",
"@types/tough-cookie": "^4.0.2",
"@typescript-eslint/eslint-plugin": "^6.10.0",
"@typescript-eslint/parser": "^6.10.0",
"ava": "^5.2.0",
"eslint": "^8.53.0",
"nodemon": "^3.1.4",
"ts-node": "^10.9.2",
"ts-node-dev": "^2.0.0",
"tsx": "^4.17.0",
"typescript": "^5.5.4"
},
"scripts": {
"lint": "eslint . --ext .ts",
"test": "ava",
"build": "tsc",
"build:watch": "tsc -w",
"prepublishOnly": "tsc",
"start:debug": "nodemon -I --exec DEBUG=nurl* node --import=tsx src/app.debug.ts"
},
"ava": {
"typescript": {
"rewritePaths": {
"src/": "dist/"
},
"compile": "tsc"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/mnsrulz/nurlresolver.git"
},
"bugs": {
"url": "https://github.com/mnsrulz/nurlresolver/issues"
},
"homepage": "https://github.com/mnsrulz/nurlresolver#readme",
"keywords": [
"urlresolver",
"megaup",
"googledrive",
"link extractor",
"scraper",
"download link",
"cloudmail",
"link generator",
"direct link"
]
}