-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 745 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 745 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
32
33
34
35
36
37
{
"name": "xlsx-diff",
"description": "Custom git diff driver for Microsoft Excel .XLSX files",
"version": "0.1.0",
"main": "dist/lib/index.js",
"repository": {
"url": "https://github.com/DiefBell/XLSX-Diff"
},
"dependencies": {
"diff": "^7.0.0",
"xlsx": "0.18.5"
},
"devDependencies": {
"@types/diff": "5.2.2",
"@types/node": "16.18.107",
"typescript": "4.9.5"
},
"authors": [
"Dief Bell"
],
"bin": {
"xlsx-diff": "dist/cli/diff.js",
"xlsx-textconv": "dist/cli/textconv.js"
},
"files": [
"readme.md",
"LICENSE.txt",
"dist/**"
],
"license": "MIT",
"scripts": {
"build": "tsc",
"watch": "tsc -w",
"prepack": "bun run build",
"pack": "npm pack"
}
}