-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
65 lines (65 loc) · 1.58 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
{
"name": "viurr",
"displayName": "Viurr",
"version": "1.4.0",
"description": "Download programmes from Viu",
"main": "./dist/main.js",
"author": "LibelDev",
"license": "MIT",
"bin": "./dist/cli/cli.js",
"engines": {
"node": ">=16.20.0"
},
"scripts": {
"clean": "del dist **/*.d.ts **/*.js",
"prebuild": "pnpm clean",
"cli": "ts-node src/cli/cli.ts",
"build": "pnpm prebuild && tsc",
"build:watch": "pnpm build --watch",
"lint": "eslint src/**",
"prepublishOnly": "pnpm build"
},
"files": [
"dist",
"templates"
],
"repository": {
"type": "git",
"url": "https://github.com/LibelDev/viurr"
},
"dependencies": {
"axios": "^0.18.0",
"axios-extensions": "^3.0.3",
"debug": "^4.1.1",
"del-cli": "^5.0.0",
"filenamify": "^4.1.0",
"filesize": "^6.1.0",
"jsdom": "^21.1.1",
"mime": "^2.3.1",
"mkdirp": "^1.0.4",
"ms": "^2.1.3",
"mustache": "^2.3.0",
"prettyjson": "^1.2.1",
"progress": "^2.0.3",
"uuid": "^9.0.0",
"yargs": "^12.0.1"
},
"devDependencies": {
"@types/debug": "^4.1.5",
"@types/jsdom": "^21.1.1",
"@types/mime": "^2.0.0",
"@types/mkdirp": "^1.0.1",
"@types/ms": "^0.7.31",
"@types/mustache": "^0.8.31",
"@types/node": "^16.15.0",
"@types/prettyjson": "^0.0.28",
"@types/progress": "^2.0.3",
"@types/uuid": "^9.0.1",
"@types/yargs": "^11.1.0",
"@typescript-eslint/eslint-plugin": "^5.59.7",
"@typescript-eslint/parser": "^5.59.7",
"eslint": "^8.41.0",
"ts-node": "^8.10.2",
"typescript": "^5.0.4"
}
}