-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
50 lines (50 loc) · 1.09 KB
/
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
43
44
45
46
47
48
49
50
{
"name": "wechat-article-dl",
"version": "2.0.2",
"description": "",
"main": "dist/index.js",
"scripts": {
"build": "npm run build --prefix frontend && tsup && cp src/index.html dist",
"test": "echo \"Error: no test specified\" && exit 1",
"start": "nodemon src/index.ts"
},
"keywords": [],
"author": {
"email": "[email protected]",
"name": "Cygra",
"url": "https://github.com/Cygra"
},
"license": "ISC",
"dependencies": {
"cors": "^2.8.5",
"express": "^4.21.2",
"open": "^10.1.0",
"puppeteer": "^23.11.1"
},
"bin": {
"wx-dl": "dist/index.js"
},
"files": [
"dist"
],
"repository": {
"url": "[email protected]:Cygra/wechat-article-dl.git",
"type": "git"
},
"devDependencies": {
"@types/cors": "^2.8.17",
"@types/express": "^5.0.0",
"@types/prompts": "^2.4.9",
"nodemon": "^3.1.9",
"ts-node": "^10.9.2",
"tsup": "^8.3.5",
"typescript": "^5.7.2"
},
"exports": {
"./package.json": "./package.json",
".": {
"import": "./dist/index.js",
"default": "./dist/index.cjs"
}
}
}