-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 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
{
"name": "bindl",
"description": "Downloads and extracts binaries from compressed packages using a config file",
"version": "0.0.0-development",
"author": "Felipe Santos @felipecrs",
"bin": "lib/index.js",
"bugs": "https://github.com/felipecrs/bindl/issues",
"dependencies": {
"chalk": "^5.4.1",
"clipanion": "^4.0.0-rc.4",
"cosmiconfig": "^9.0.0",
"decompress-tar": "^4.1.1",
"decompress-tarbz2": "^4.1.1",
"decompress-targz": "^4.1.1",
"decompress-unzip": "^4.0.1",
"download": "^8.0.0",
"listr2": "^8.2.5",
"rimraf": "^6.0.1"
},
"devDependencies": {
"@felipecrs/decompress-tarxz": "^4.0.0",
"@types/download": "^8.0.2",
"@types/node": "^20.17.10",
"c8": "^10.1.3",
"conventional-changelog-conventionalcommits": "^8.0.0",
"eslint": "^9.17.0",
"eslint-plugin-unicorn": "^57.0.0",
"execa": "^9.5.2",
"installed-check": "^9.3.0",
"neostandard": "^0.12.0",
"prettier": "^3.0.0",
"semantic-release": "^24.0.0",
"tsx": "^4.19.2",
"typescript": "^5.7.2",
"vitest": "^3.0.0",
"zx": "^8.3.0"
},
"engines": {
"node": "^20.0.0 || >=22.0.0"
},
"files": [
"/lib"
],
"homepage": "https://github.com/felipecrs/bindl#readme",
"license": "MIT",
"type": "module",
"exports": "./lib/index.js",
"repository": "felipecrs/bindl",
"scripts": {
"build": "rimraf lib && tsc",
"lint": "tsc --noEmit && eslint . && prettier --check . && installed-check --ignore-dev",
"prepack": "npm run build",
"test": "c8 vitest --no-watch",
"posttest": "npm run lint"
},
"volta": {
"node": "22.14.0",
"npm": "11.2.0"
}
}