-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 773 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 773 Bytes
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
{
"name": "multi-api",
"version": "1.0.0",
"description": "一个允许用户保存和切换多个API端点和密钥的后端服务",
"main": "src/index.js",
"scripts": {
"start": "node src/index.js",
"dev": "nodemon src/index.js",
"build": "node build.js"
},
"dependencies": {
"axios": "^1.6.2",
"body-parser": "^1.20.2",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"lowdb": "^1.0.0"
},
"devDependencies": {
"nodemon": "^3.0.1",
"pkg": "^5.8.1"
},
"bin": {
"multi-api": "./src/index.js",
"clean-privacy": "./clean-privacy.js"
},
"pkg": {
"assets": [
"public/**/*",
"node_modules/**/*",
"src/**/*"
],
"targets": [
"node16-win-x64"
]
}
}