chore: 初始環境

This commit is contained in:
2025-01-27 16:13:44 +08:00
commit 3ff5cbc14c
5 changed files with 846 additions and 0 deletions

22
package.json Normal file
View File

@@ -0,0 +1,22 @@
{
"name": "fileproxy",
"version": "1.0.0",
"description": "",
"main": "index.js",
"type": "module",
"scripts": {
"build": "rimraf dist && tsc",
"start": "cd dist && node index.js"
},
"author": "",
"license": "ISC",
"dependencies": {
"got": "^14.4.5",
"yaml": "^2.5.0"
},
"devDependencies": {
"@tsconfig/node18": "^18.2.2",
"@types/node": "^18.11.17",
"rimraf": "^5.0.5"
}
}