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
| {
| "name": "pkg-fetch",
| "version": "3.4.2",
| "description": "Compiles and stores base binaries for pkg",
| "main": "lib-es5/index.js",
| "license": "MIT",
| "repository": "vercel/pkg-fetch",
| "bin": {
| "pkg-fetch": "lib-es5/bin.js"
| },
| "files": [
| "lib-es5/*.js",
| "lib-es5/*.ts",
| "patches/*"
| ],
| "dependencies": {
| "chalk": "^4.1.2",
| "fs-extra": "^9.1.0",
| "https-proxy-agent": "^5.0.0",
| "node-fetch": "^2.6.6",
| "progress": "^2.0.3",
| "semver": "^7.3.5",
| "tar-fs": "^2.1.1",
| "yargs": "^16.2.0"
| },
| "devDependencies": {
| "@types/fs-extra": "^9.0.13",
| "@types/node": "^14.17.32",
| "@types/node-fetch": "^2.5.12",
| "@types/progress": "^2.0.5",
| "@types/semver": "^7.3.9",
| "@types/tar-fs": "^2.0.1",
| "@types/yargs": "^16.0.4",
| "@typescript-eslint/eslint-plugin": "^4.33.0",
| "@typescript-eslint/parser": "^4.33.0",
| "eslint": "^7.32.0",
| "eslint-config-airbnb-base": "^14.2.1",
| "eslint-config-prettier": "^8.3.0",
| "eslint-import-resolver-typescript": "^2.5.0",
| "eslint-plugin-import": "^2.25.2",
| "lint-staged": "^10.5.4",
| "prettier": "^2.4.1",
| "rimraf": "^3.0.2",
| "simple-git-hooks": ">=2.7.0",
| "typescript": "^4.4.4"
| },
| "scripts": {
| "build": "rimraf lib-es5 && tsc --build lib",
| "bin": "node lib-es5/bin.js",
| "lint": "eslint lib",
| "prepare": "npm run build",
| "prepublishOnly": "npm run lint",
| "start": "node lib-es5/bin.js"
| },
| "prettier": {
| "singleQuote": true
| },
| "simple-git-hooks": {
| "pre-commit": "npx lint-staged"
| },
| "lint-staged": {
| "*.{js,css,md}": "prettier --write"
| }
| }
|
|