feat: 完成基本功能

This commit is contained in:
2025-05-12 21:49:32 +08:00
parent 5575ce6ada
commit 0d7e254cf4
4 changed files with 234 additions and 0 deletions

21
package.json Normal file
View File

@@ -0,0 +1,21 @@
{
"name": "oil",
"version": "1.0.0",
"description": "查询当前油价",
"keywords": [
"oil"
],
"license": "GPL-3.0-or-later",
"author": "hbk01",
"type": "module",
"main": "index.js",
"scripts": {
"test": "nodemon ./src/index.js"
},
"dependencies": {
"axios": "^1.9.0",
"cheerio": "^1.0.0",
"express": "^5.1.0",
"nodemon": "^3.1.10"
}
}