-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.06 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
{
"name": "unarchive",
"author": "Araxeus",
"description": "Automatically extract archives of various types",
"version": "1.1.3",
"type": "module",
"license": "MIT",
"repository": "https://github.com/Araxeus/unarchive",
"homepage": "https://github.com/Araxeus/unarchive",
"files": [
"dist"
],
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"scripts": {
"b": "tsc && bun ignore-tests",
"check": "biome check",
"lint": "biome check --write",
"ci": "bun b && biome ci . && node ./dist/tests/test.js",
"ignore-tests": "echo '*' > ./dist/tests/.npmignore",
"publish": "bun ci && npm publish"
},
"dependencies": {
"compressing": "^1.10.1",
"file-type": "^19.4.0"
},
"keywords": [
"uncompress",
"archive",
"tar",
"zip",
"tgz",
"targz"
],
"devDependencies": {
"@biomejs/biome": "^1.8.3",
"@types/node": "^22.2.0",
"typescript": "^5.5.4"
},
"packageManager": "[email protected]",
"trustedDependencies": [
"@biomejs/biome"
]
}