-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.62 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.62 KB
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
51
{
"name": "道求职",
"version": "1.0.0",
"description": "八字分析系统 - 整合八字计算和大模型分析,面向应届求职生的命理指导应用",
"main": "server.js",
"scripts": {
"start": "node server.js",
"start:https": "node https-server.js",
"dev": "nodemon server.js",
"dev:https": "nodemon https-server.js",
"test": "node bazi_calculator.js",
"test-qwen": "node qwen_client.js",
"test-tts": "node -e \"(async()=>{const {synthesizeSpeech}=require('./tts_client');const fs=require('fs');const r=await synthesizeSpeech({text:'道友好,贫道在此为你解疑。',voiceType:'qiniu_zh_male_ybxknjs',model:'tts',format:'mp3'});if(r.success){fs.writeFileSync('tts_sample.mp3',r.audioBuffer);console.log('ok: tts_sample.mp3');}else{console.error('fail:',r.error);}})()\"",
"setup": "node setup.js",
"health": "curl http://localhost:3000/health",
"health:https": "curl -k https://localhost:3443/health"
},
"dependencies": {
"axios": "^1.6.0",
"cors": "^2.8.5",
"express": "^4.19.2",
"form-data": "^4.0.4",
"helmet": "^7.1.0",
"multer": "^2.0.2",
"node-forge": "^1.3.1"
},
"devDependencies": {
"https": "^1.0.0",
"nodemon": "^3.0.2"
},
"keywords": [
"八字",
"命理",
"AI",
"七牛云",
"qwen",
"求职",
"占卜",
"天乙贵人"
],
"author": "道求职开发团队",
"license": "MIT",
"engines": {
"node": ">=16.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/你的用户名/道求职.git"
},
"homepage": "https://github.com/你的用户名/道求职#readme"
}