-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
112 lines (112 loc) · 3.1 KB
/
Copy pathpackage.json
File metadata and controls
112 lines (112 loc) · 3.1 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"name": "@borgar/xlsx-convert",
"version": "5.7.0",
"description": "Utility to convert Excel XLSX files to JSON",
"type": "module",
"source": "src/index.ts",
"main": "dist/index.cjs",
"types": "dist/index.d.cts",
"exports": {
".": {
"require": "./dist/index.cjs",
"types": "./dist/index.d.cts",
"default": "./dist/index.js"
},
"./future": {
"require": "./dist/index-future.cjs",
"types": "./dist/index-future.d.cts",
"default": "./dist/index-future.js"
}
},
"bin": {
"xlsx-convert": "./dist/cli.mjs"
},
"directories": {
"test": "tests"
},
"scripts": {
"build": "tsdown",
"lint": "eslint *.js tests/ src/",
"typecheck": "tsc --noEmit",
"docs": "typedoc && concat-md tempdocs > docs/API.md && rm -rf tempdocs",
"test:unit": "vitest run src/*.spec.ts src/**/*.spec.ts tests/**/*.spec.ts",
"test:fixture": "node --experimental-transform-types tests/index.ts",
"test": "npm run test:unit && VERIFY_FORMULAS=1 npm run test:fixture",
"updatetests": "UPDATE_TESTS=1 node --experimental-transform-types tests/index.ts",
"check": "npm run test && npm run lint && npm run typecheck && node src/cli.ts tests/excel/fonts.xlsx -o /dev/null",
"release": "git diff --exit-code && PACKAGE_VERSION=$(jq -r .version package.json) && echo \"About to tag and push v$PACKAGE_VERSION. Continue? (y/n)\" && read -r REPLY && [ \"$REPLY\" = \"y\" ] && git tag --annotate v$PACKAGE_VERSION --message=v$PACKAGE_VERSION && git push origin v$PACKAGE_VERSION",
"benchmark": "node --experimental-transform-types tests/benchmark.ts",
"benchmark:fixture": "npm run benchmark tests/excel"
},
"files": [
"dist",
"docs",
"LICENSE",
"README.md"
],
"tsdown": [
{
"entry": [
"src/index.ts",
"src/index-future.ts"
],
"platform": "neutral",
"format": [
"esm",
"cjs"
],
"sourcemap": true
},
{
"entry": "src/cli.ts",
"platform": "node"
}
],
"repository": {
"type": "git",
"url": "https://github.com/borgar/xlsx-convert"
},
"bugs": {
"url": "https://github.com/borgar/xlsx-reader/issues"
},
"keywords": [
"excel",
"json",
"xlsx",
"csf",
"jsf",
"office",
"spreadsheet",
"workbook"
],
"author": "Borgar Þorsteinsson <borgar@borgar.net> (http://borgar.net/)",
"license": "MIT",
"dependencies": {
"@borgar/fx": "~5.1.0",
"@borgar/simple-xml": "~2.2.2",
"@borgar/zip": "~1.0.0",
"@jsfkit/types": "~2.6.0",
"@jsfkit/utils": "~1.2.0",
"numfmt": "~3.2.6"
},
"devDependencies": {
"@borgar/eslint-config": "~4.1.0",
"@eslint/js": "~10.0.1",
"@types/node": "~26.2.0",
"concat-md": "~0.5.1",
"eslint": "~10.9.0",
"globals": "~17.11.0",
"tinybench": "~6.1.3",
"tsdown": "~0.22.14",
"tsup": "~8.5.1",
"typedoc": "~0.28.20",
"typedoc-plugin-markdown": "~4.12.0",
"typescript": "~6.0.3",
"typescript-eslint": "~8.67.0",
"vitest": "~4.1.11"
},
"allowScripts": {
"esbuild@0.27.2": true,
"fsevents@2.3.3": true
}
}