-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 928 Bytes
/
package.json
File metadata and controls
47 lines (47 loc) · 928 Bytes
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
{
"name": "@oele_dev/mkdn",
"version": "1.0.0",
"description": "Convert files to Markdown using Cloudflare Workers AI",
"type": "module",
"main": "./dist/src/index.js",
"types": "./dist/src/index.d.ts",
"bin": {
"mkdn": "dist/src/cli.js"
},
"exports": {
".": {
"types": "./dist/src/index.d.ts",
"import": "./dist/src/index.js"
}
},
"scripts": {
"build": "tsc",
"test": "tsc && node --test dist/tests/*.test.js",
"prepublishOnly": "npm run build"
},
"files": [
"dist/**/*.js",
"dist/**/*.d.ts"
],
"keywords": [
"markdown",
"converter",
"pdf",
"docx",
"cloudflare",
"cli",
"ai"
],
"license": "MIT",
"engines": {
"node": ">=18.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/oele-dev/mkdn.git"
},
"devDependencies": {
"@types/node": "^25.3.0",
"typescript": "^5.9.3"
}
}