-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
102 lines (102 loc) · 2.7 KB
/
Copy pathpackage.json
File metadata and controls
102 lines (102 loc) · 2.7 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
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "@llbbl/polydoc-core",
"version": "0.1.1",
"description": "Reusable TypeScript Markdown-to-DOCX conversion core for polydoc and TeamWiki.",
"type": "module",
"license": "MIT",
"author": "Logan Lindquist Land",
"packageManager": "pnpm@11.18.0",
"engines": {
"node": ">=22"
},
"repository": {
"type": "git",
"url": "git+https://github.com/agentic-tooling/polydoc-core.git"
},
"bugs": {
"url": "https://github.com/agentic-tooling/polydoc-core/issues"
},
"homepage": "https://github.com/agentic-tooling/polydoc-core#readme",
"keywords": [
"markdown",
"docx",
"polydoc",
"teamwiki",
"conversion"
],
"sideEffects": false,
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"default": "./dist/index.js"
},
"./google": {
"types": "./dist/google.d.ts",
"import": "./dist/google.js",
"default": "./dist/google.js"
},
"./sharepoint": {
"types": "./dist/sharepoint.d.ts",
"import": "./dist/sharepoint.js",
"default": "./dist/sharepoint.js"
},
"./package.json": "./package.json"
},
"types": "./dist/index.d.ts",
"typesVersions": {
"*": {
"google": [
"./dist/google.d.ts"
],
"sharepoint": [
"./dist/sharepoint.d.ts"
]
}
},
"files": [
"dist",
"src",
"README.md",
"LICENSE"
],
"scripts": {
"build": "node -e \"require('node:fs').rmSync('dist',{recursive:true,force:true})\" && tsc -p tsconfig.build.json",
"typecheck": "tsc -p tsconfig.json --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"lint": "biome check .",
"format": "biome format --write .",
"format:check": "biome format .",
"check:package": "pnpm build && attw --pack . --ignore-rules cjs-resolves-to-esm && publint --strict",
"check": "biome check . && tsc -p tsconfig.json --noEmit && vitest run && pnpm check:package",
"changelog": "git cliff -o CHANGELOG.md",
"changelog:preview": "git cliff --unreleased",
"changelog:release": "git cliff --unreleased --prepend CHANGELOG.md",
"prepack": "pnpm build"
},
"devDependencies": {
"@arethetypeswrong/cli": "^0.18.5",
"@biomejs/biome": "^2.5.5",
"@types/node": "^20.19.43",
"@vitest/coverage-v8": "^4.1.10",
"google-auth-library": "10.5.0",
"publint": "^0.3.22",
"typescript": "^7.0.2",
"vitest": "^4.1.10"
},
"dependencies": {
"@azure/msal-node": "5.4.2",
"@googleapis/drive": "20.2.0",
"execa": "^8.0.1",
"fflate": "0.8.3"
},
"peerDependencies": {
"google-auth-library": "^10"
},
"peerDependenciesMeta": {
"google-auth-library": {
"optional": true
}
}
}