-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.64 KB
/
Copy pathpackage.json
File metadata and controls
59 lines (59 loc) · 1.64 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
{
"name": "@jsfkit/utils",
"version": "1.2.0",
"description": "A collection of utilities for working with JSF: a JSON spreadsheet representation",
"license": "MIT",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/jsfkit/utils.git"
},
"homepage": "https://jsfkit.github.io/utils/",
"bugs": "https://github.com/jsfkit/utils/issues",
"keywords": [
"excel",
"json",
"xlsx",
"jsf",
"spreadsheet",
"workbook",
"typescript"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsup",
"build:docs": "typedoc && concat-md tempdocs > API.md && rm -rf tempdocs",
"check": "npm run lint && npm run typecheck",
"lint": "eslint src",
"test": "vitest run",
"format": "eslint src --fix",
"typecheck": "tsc",
"release": "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"
},
"devDependencies": {
"@borgar/eslint-config": "^4.0.1",
"@eslint/js": "^9.38.0",
"concat-md": "~0.5.1",
"eslint": "^9.38.0",
"globals": "^17.3.0",
"tsup": "^8.5.1",
"typedoc": "^0.28.17",
"typedoc-plugin-markdown": "~4.11.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.56.0",
"vitest": "~4.1.1"
},
"dependencies": {
"@jsfkit/types": "~2.0.0"
}
}