-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
42 lines (42 loc) · 918 Bytes
/
package.json
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
{
"name": "wechat-article-dl",
"version": "1.1.0",
"description": "",
"main": "dist/index.js",
"scripts": {
"build": "tsup",
"test": "echo \"Error: no test specified\" && exit 1",
"watch": "nodemon --watch src -e ts --exec \"npm run build\""
},
"keywords": [],
"author": {
"email": "[email protected]",
"name": "Cygra",
"url": "https://github.com/Cygra"
},
"license": "ISC",
"dependencies": {
"prompts": "^2.4.2",
"puppeteer": "^23.11.1"
},
"bin": {
"wx-dl": "index.js"
},
"repository": {
"url": "[email protected]:Cygra/wechat-article-dl.git",
"type": "git"
},
"devDependencies": {
"@types/prompts": "^2.4.9",
"nodemon": "^3.1.9",
"tsup": "^8.3.5",
"typescript": "^5.7.2"
},
"exports": {
"./package.json": "./package.json",
".": {
"import": "./dist/index.js",
"default": "./dist/index.cjs"
}
}
}