-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.39 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
{
"name": "@eucaue/decomp",
"version": "0.3.2",
"author": "Cauê Souza",
"type": "commonjs",
"repository": {
"type": "git",
"url": "git+https://github.com/EuCaue/decomp.git"
},
"devDependencies": {
"@types/bun": "latest",
"@typescript-eslint/eslint-plugin": "^6.19.1",
"@typescript-eslint/parser": "^6.19.1",
"eslint": "^8.0.1",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.1.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-n": "^15.0.0 || ^16.0.0 ",
"eslint-plugin-prettier": "^5.1.3",
"prettier": "^3.2.4",
"tsc-alias": "^1.8.8",
"typescript": "*"
},
"peerDependencies": {
"typescript": "^5.0.0"
},
"bin": {
"decomp": "dist/src/index.js"
},
"description": "A simple way to decompress files.",
"homepage": "https://github.com/EuCaue/decomp#readme",
"keywords": [
"unzip",
"7zip",
"bzip2",
"lzip",
"tar",
"unrar",
"decompress",
"extract"
],
"license": "GPL3",
"scripts": {
"prepare": "npm run build",
"build": "tsc && tsc-alias",
"lint": "prettier --check . & eslint . --ext .ts",
"test": "bun test",
"format": "prettier --write . && eslint . --ext .ts --fix",
"dev": "bun ./src/index.ts"
},
"dependencies": {
"commander": "^11.1.0"
}
}