-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.52 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.52 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
{
"name": "@oak-digital/docxify",
"version": "0.0.0-alpha.1",
"license": "MIT",
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"packageManager": "[email protected]",
"exports": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"files": ["dist"],
"scripts": {
"example": "bun run scripts/build-example.ts",
"build": "bun run scripts/build.ts",
"build:ci": "bun run scripts/build.ts",
"release": "bumpp",
"typecheck": "tsc --noEmit",
"format:check": "biome format",
"format:fix": "biome format --fix",
"lint:check": "biome check",
"lint:fix": "biome check --fix",
"docs:serve": "docsify serve docs",
"docs:build": "docsify build docs"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@types/bun": "latest",
"@types/lodash": "^4.17.16",
"bumpp": "^10.1.1",
"bun-plugin-dts": "^0.3.0",
"docsify-cli": "^4.4.4"
},
"peerDependencies": {
"typescript": "^5.0.0"
},
"dependencies": {
"array-treeify": "^0.1.3",
"css-select": "^5.1.0",
"docx": "^9.3.0",
"domhandler": "^5.0.3",
"htmlparser2": "^10.0.0",
"lodash": "^4.17.21",
"string-ts": "^2.2.1"
},
"publishConfig": {
"access": "public"
},
"homepage": "https://github.com/Oak-Digital/docxify",
"repository": {
"type": "git",
"url": "git+https://github.com/Oak-Digital/docxify.git"
},
"bugs": "https://github.com/Oak-Digital/docxify/issues"
}