-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 2.13 KB
/
Copy pathpackage.json
File metadata and controls
90 lines (90 loc) · 2.13 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
{
"name": "ole2-reader",
"version": "0.1.0",
"description": "Zero-dependency OLE2 / Compound File Binary (CFB) reader for Node and the browser — list and read the streams inside legacy Microsoft files (.xls, .doc, .ppt, .msg).",
"keywords": [
"ole2",
"ole",
"cfb",
"cfb-reader",
"compound-file",
"compound-file-binary",
"compound-document",
"ms-cfb",
"reader",
"parser",
"msg",
"doc",
"xls",
"ppt",
"structured-storage",
"zero-dependency",
"typescript",
"browser",
"node"
],
"license": "MIT",
"author": "Thiago Zanluca",
"repository": {
"type": "git",
"url": "git+https://github.com/zanlucathiago/ole2-reader.git"
},
"bugs": {
"url": "https://github.com/zanlucathiago/ole2-reader/issues"
},
"homepage": "https://github.com/zanlucathiago/ole2-reader#readme",
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.mts",
"exports": {
".": {
"import": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
}
},
"files": [
"dist",
"README.md",
"CHANGELOG.md",
"LICENSE"
],
"sideEffects": false,
"engines": {
"node": ">=18"
},
"scripts": {
"build": "tsdown",
"test": "vitest run",
"test:watch": "vitest",
"coverage": "vitest run --coverage",
"typecheck": "tsc --noEmit",
"lint": "eslint .",
"format": "prettier --write .",
"changeset": "changeset",
"version-packages": "changeset version",
"release": "changeset publish",
"prepublishOnly": "npm run build"
},
"devDependencies": {
"@changesets/changelog-github": "^0.7.0",
"@changesets/cli": "^2.31.0",
"@eslint/js": "^10.0.1",
"@types/node": "^26.0.0",
"@vitest/coverage-v8": "^4.1.9",
"eslint": "^10.6.0",
"prettier": "^3.4.2",
"tsdown": "0.22.3",
"typescript": "^6.0.3",
"typescript-eslint": "^8.18.1",
"vite": "^8.0.16",
"vitest": "^4.1.9"
},
"packageManager": "pnpm@11.9.0"
}