-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 1013 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 1013 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
{
"name": "@node-projects/excelforge",
"version": "3.0.0",
"description": "A **complete TypeScript library** for reading and writing Excel `.xlsx` files with **zero external dependencies**. Works in browsers, Node.js, Deno, Bun, and edge runtimes.",
"homepage": "https://github.com/node-projects/excelForge#readme",
"bugs": {
"url": "https://github.com/node-projects/excelForge/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/node-projects/excelForge.git"
},
"license": "MIT",
"author": "jogibear9988",
"type": "module",
"main": "./dist/index.js",
"scripts": {
"test": "node ./dist/test/examples.js",
"build": "tsc",
"prepublishOnly": "npm run build && npm run bundle",
"bundle": "esbuild ./dist/index.js --format=esm --minify --external:fs/promises --external:zlib --platform=neutral --bundle --outfile=./dist/index-min.js"
},
"devDependencies": {
"esbuild": "^0.27.4",
"typescript": "^6.0.2",
"zlib": "^1.0.5"
}
}