-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 692 Bytes
/
Copy pathpackage.json
File metadata and controls
31 lines (31 loc) · 692 Bytes
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
{
"name": "tiny-excel",
"description": "A promise-based, fast and simple .xlsx file editor using Bun APIs",
"type": "module",
"main": "lib/index.ts",
"version": "1.0.0",
"scripts": {
"test": "bun test"
},
"author": {
"name": "Maverick Fabroa",
"email": "me@mavyfaby.me",
"url": "https://mavyfaby.me"
},
"repository": {
"type": "git",
"url": "https://github.com/mavyfaby/tiny-excel"
},
"license": "MIT",
"engines": {
"bun": "^1.1.27"
},
"keywords": ["excel", "tiny", "spreadsheet", "xlsx", "xml"],
"dependencies": {
"fast-xml-parser": "^4.5.0",
"fflate": "^0.8.2"
},
"devDependencies": {
"@types/bun": "^1.1.10"
}
}