-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.18 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.18 KB
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": "zip-bun",
"version": "1.3.8",
"description": "A high-performance zip archive library for Bun with native C bindings",
"main": "dist/index.mjs",
"types": "dist/index.d.mts",
"type": "module",
"files": [
"dist",
"src",
"images"
],
"exports": {
".": {
"import": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
}
}
},
"scripts": {
"test": "bun test",
"test:coverage": "bun test --coverage",
"lint": "biome check",
"lint:write": "biome check --write",
"build": "tsdown"
},
"keywords": [
"zip",
"archive",
"compression",
"bun",
"typescript",
"native",
"miniz",
"c",
"ffi"
],
"author": "MagicFun1241",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/MagicFun1241/zip-bun.git"
},
"bugs": {
"url": "https://github.com/MagicFun1241/zip-bun/issues"
},
"homepage": "https://github.com/MagicFun1241/zip-bun",
"engines": {
"bun": ">=1.2.0"
},
"devDependencies": {
"@biomejs/biome": "2.2.2",
"@types/bun": "latest",
"tsdown": "^0.16.4"
},
"peerDependencies": {
"typescript": "^5"
}
}