-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.01 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.01 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
{
"name": "doc2markdown",
"version": "1.3.2",
"description": "feishu document to markdown converter",
"license": "MIT",
"author": "",
"type": "commonjs",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"start": "node ./dist/run/index.js",
"test": "mkdir -p dist/run && tsc --esModuleInterop ./run/index.ts --outDir dist/ && cp ./run/token.json ./dist/run/token.json && node ./dist/run/index.js",
"clean": "rm -rf ./dist",
"prepublishOnly": "npm run build"
},
"types": "dist/index.d.ts",
"dependencies": {
"axios": "^1.13.2",
"path": "^0.12.7",
"sha256": "^0.2.0",
"tiny-lru": "^11.4.5"
},
"homepage": "https://github.com/AntiMoron/doc2markdown",
"peerDependencies": {
"fs": "^0.0.1-security"
},
"devDependencies": {
"@types/node": "^24.10.1",
"@types/sha256": "^0.2.2",
"fs": "^0.0.1-security",
"prettier": "^3.6.2",
"typescript": "^5.9.3"
},
"files": [
"./dist",
"package.json",
"README.md",
"tsconfig.json"
]
}