Create package.json
Browse files- package.json +17 -0
package.json
ADDED
@@ -0,0 +1,17 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"name": "puppeteer-express-app",
|
3 |
+
"version": "1.0.0",
|
4 |
+
"description": "一个使用 Puppeteer 和 Express 的网页抓取服务",
|
5 |
+
"main": "index.js",
|
6 |
+
"scripts": {
|
7 |
+
"start": "node index.js"
|
8 |
+
},
|
9 |
+
"keywords": ["puppeteer", "express", "web scraping"],
|
10 |
+
"author": "您的名字",
|
11 |
+
"license": "ISC",
|
12 |
+
"dependencies": {
|
13 |
+
"express": "^4.17.1",
|
14 |
+
"puppeteer": "^16.0.0"
|
15 |
+
}
|
16 |
+
}
|
17 |
+
|