-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.02 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 2.02 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
{
"name": "@borgar/fx",
"version": "5.0.3",
"description": "Utilities for working with Excel formulas",
"type": "module",
"exports": {
".": {
"require": "./dist/index.cjs",
"types": "./dist/index.d.cts",
"default": "./dist/index.js"
},
"./xlsx": {
"require": "./dist/xlsx/index.cjs",
"types": "./dist/xlsx/index.d.cts",
"default": "./dist/xlsx/index.js"
}
},
"module": "./dist/index.js",
"typings": "./dist/index.d.cts",
"scripts": {
"benchmark": "node --experimental-strip-types benchmark/benchmark.ts",
"lint": "eslint lib/*.ts",
"test": "vitest run",
"typecheck": "tsc --noEmit",
"check": "npm run test && npm run lint && npm run typecheck",
"build": "tsup",
"build:all": "npm run docs && npm run build",
"docs": "typedoc && concat-md tempdocs > docs/API.md && rm -rf tempdocs",
"release": "git diff --exit-code && tsup && npm publish && V=$(jq -r .version package.json) && git tag -a $V -m $V && git push origin $V && gh release create $V --generate-notes"
},
"tsup": {
"entry": [
"lib/index.ts",
"lib/xlsx/index.ts"
],
"format": [
"esm",
"cjs"
],
"splitting": false,
"sourcemap": true,
"clean": true,
"dts": true
},
"repository": {
"type": "git",
"url": "git+https://github.com/borgar/fx.git"
},
"bugs": {
"url": "https://github.com/borgar/fx/issues"
},
"browserslist": [
"defaults",
"not IE 11",
"maintained node versions"
],
"keywords": [
"excel",
"xlsx",
"formula",
"spreadsheet"
],
"author": "Borgar Þorsteinsson <borgar@borgar.net> (http://borgar.net/)",
"license": "MIT",
"devDependencies": {
"@borgar/eslint-config": "~4.0.1",
"concat-md": "~0.5.1",
"benchmark": "~2.1.4",
"eslint": "~9.39.0",
"typescript": "~5.9.3",
"typescript-eslint": "~8.55.0",
"vitest": "~4.0.18",
"globals": "~17.3.0",
"typedoc": "~0.28.17",
"typedoc-plugin-markdown": "~4.10.0",
"tsup": "~8.5.1"
}
}