-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.34 KB
/
Copy pathpackage.json
File metadata and controls
89 lines (89 loc) · 2.34 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
{
"name": "odf.js",
"version": "1.10.3",
"description": "Type-safe, lossless round-trip conversion between OpenDocument Format packages (odt, ods, odp) and JSON, hand-written and dependency-minimal, built on Zod 4 codecs.",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/ExaDev/odf.js.git"
},
"homepage": "https://github.com/ExaDev/odf.js#readme",
"bugs": {
"url": "https://github.com/ExaDev/odf.js/issues"
},
"exports": {
".": {
"types": {
"import": "./dist/index.d.ts",
"require": "./dist/index.d.cts"
},
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"publishConfig": {
"access": "public",
"provenance": true,
"registry": "https://registry.npmjs.org/"
},
"sideEffects": false,
"engines": {
"node": ">=20"
},
"scripts": {
"build": "tsdown",
"prepublishOnly": "pnpm run lint && pnpm run typecheck && tsdown && publint && attw --pack",
"lint": "eslint . --max-warnings 0",
"typecheck": "tsc --noEmit",
"test": "vitest run --project unit",
"test:watch": "vitest --project unit",
"test:coverage": "vitest run --project unit --coverage",
"test:smoke": "tsdown && vitest run --project smoke",
"prepare": "husky",
"release": "semantic-release"
},
"keywords": [
"odf",
"opendocument",
"odt",
"ods",
"odp",
"round-trip",
"zod",
"codec"
],
"license": "MIT",
"packageManager": "pnpm@11.6.0",
"dependencies": {
"document-schema.js": "^1.5.2",
"fast-xml-parser": "^5.10.1",
"fflate": "^0.8.3",
"zod": "^4.4.3"
},
"devDependencies": {
"@arethetypeswrong/cli": "^0.18.5",
"@commitlint/cli": "^21.2.1",
"@commitlint/config-conventional": "^21.2.0",
"@eslint/js": "^10.0.1",
"@semantic-release/changelog": "^7.0.0",
"@semantic-release/git": "^11.0.1",
"@types/node": "^26.1.1",
"@vitest/coverage-v8": "^4.1.10",
"eslint": "^10.8.0",
"globals": "^17.8.0",
"husky": "^9.1.7",
"lint-staged": "^17.2.0",
"publint": "^0.3.21",
"semantic-release": "^25.0.8",
"tsdown": "^0.22.13",
"typescript": "^6.0.3",
"typescript-eslint": "^8.65.0",
"vitest": "^4.1.10"
}
}