-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.05 KB
/
Copy pathpackage.json
File metadata and controls
84 lines (84 loc) · 2.05 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
{
"name": "@office-kit/docx",
"version": "0.1.1",
"description": "OOXML-compliant .docx generation for browser and Node.js.",
"keywords": [
"docx",
"ecma-376",
"ooxml",
"word",
"wordprocessingml"
],
"homepage": "https://github.com/office-kit/docx#readme",
"bugs": {
"url": "https://github.com/office-kit/docx/issues"
},
"license": "MIT",
"author": "Yuichiro Yamashita",
"repository": {
"type": "git",
"url": "git+https://github.com/office-kit/docx.git"
},
"files": [
"dist",
"README.md",
"LICENSE",
"CHANGELOG.md"
],
"type": "module",
"sideEffects": false,
"main": "./dist/index.mjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.mts",
"exports": {
".": {
"types": "./dist/index.d.mts",
"import": "./dist/index.mjs"
},
"./package.json": "./package.json"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsdown",
"build:packages": "pnpm build && pnpm --filter \"@office-kit/docx-preview\" run build",
"build:all": "pnpm build:packages && pnpm --filter word-kit-site run build",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"check:tree-shake": "node scripts/check-tree-shake.mjs",
"check:api-page": "node scripts/check-api-page.mjs",
"sample": "node scripts/generate-samples.mjs",
"lint": "oxlint",
"format": "oxfmt",
"format:check": "oxfmt --check",
"changeset": "changeset",
"release": "pnpm build:packages && changeset publish",
"prepublishOnly": "pnpm run build"
},
"dependencies": {
"fflate": "^0.8.2"
},
"devDependencies": {
"@changesets/cli": "^2.29.0",
"@types/node": "^22.10.0",
"esbuild": "^0.28.0",
"happy-dom": "^20.9.0",
"jszip": "^3.10.1",
"oxfmt": "^0.49.0",
"oxlint": "^1.64.0",
"tsdown": "^0.22.0",
"typescript": "^5.7.0",
"vitest": "^2.1.0"
},
"engines": {
"node": ">=20"
},
"packageManager": "pnpm@10.25.0",
"pnpm": {
"onlyBuiltDependencies": [
"esbuild"
]
}
}