-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.22 KB
/
package.json
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
{
"name": "xlsx-addr-utils",
"version": "0.2.1",
"description": "Simplify manipulation of XLSX cell addresses",
"keywords": [
"excel",
"xlsx",
"spreadsheet",
"office",
"excel-utils"
],
"repository": {
"type": "git",
"url": "https://github.com/olecve/xlsx-addr-utils.git"
},
"license": "MIT",
"author": "Oleg Tsvetkov <[email protected]>",
"type": "commonjs",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"LICENSE",
"README.md",
"package.json"
],
"scripts": {
"build": "tsc",
"changeset:publish": "changeset publish",
"changeset:version": "changeset version",
"changeset": "changeset",
"fmt:prettier": "prettier --write \"**/*.ts\"",
"fmt:sort-package-json": "sort-package-json package.json",
"fmt": "yarn fmt:sort-package-json && yarn fmt:prettier",
"test:watch": "jest --watch",
"test": "jest"
},
"devDependencies": {
"@changesets/cli": "^2.26.2",
"@types/jest": "^29.5.4",
"jest": "^29.6.4",
"prettier": "^3.0.3",
"sort-package-json": "^2.5.1",
"ts-jest": "^29.1.1",
"typescript": "^5.2.2"
},
"packageManager": "[email protected]",
"publishConfig": {
"access": "public"
}
}