-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 1.75 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": "ubisoft-manifest-downloader",
"version": "0.1.0",
"description": "A Windows CLI application to download old versions of Ubisoft Connect games",
"main": "dist/src/index.js",
"bin": {
"umd": "./dist/src/index.js",
"ubisoft-manifest-downloader": "./dist/src/index.js"
},
"scripts": {
"start:ts": "ts-node src/index.ts",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": {
"name": "Charlie Laabs",
"url": "https://github.com/claabs"
},
"repository": {
"type": "git",
"url": "https://github.com/YoobieRE/ubisoft-manifest-downloader.git"
},
"keywords": [
"ubisoft",
"ubi",
"ubisoft connect",
"uplay",
"protobuf",
"protocol buffer",
"dmx",
"demux"
],
"license": "MIT",
"engines": {
"node": ">=16"
},
"files": [
"dist/src",
"dist/bin"
],
"dependencies": {
"chalk": "^4.1.2",
"fs-extra": "^10.1.0",
"inquirer": "^8.2.4",
"loglevel": "^1.8.0",
"native-reg": "^1.1.0",
"node-fetch": "^2.6.7",
"nodejs-file-downloader": "^4.10.1",
"p-queue": "^6.6.2",
"regedit": "^5.1.1",
"ubisoft-demux": "^1.10702.0",
"undici": "^5.10.0",
"yaml": "^2.1.1",
"zstd.ts": "^1.1.3"
},
"devDependencies": {
"@types/fs-extra": "^9.0.13",
"@types/inquirer": "^8.2.1",
"@types/node-fetch": "^2.6.2",
"@typescript-eslint/eslint-plugin": "^5.31.0",
"@typescript-eslint/parser": "^5.31.0",
"eslint": "^8.20.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.2.1",
"pkg": "^5.8.0",
"prettier": "^2.7.1",
"ts-node": "^10.9.1",
"typed-emitter": "^2.1.0",
"typescript": "^4.7.4"
}
}