-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1017 Bytes
/
Copy pathpackage.json
File metadata and controls
39 lines (39 loc) · 1017 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
38
39
{
"name": "mnagentflow",
"version": "1.0.0",
"description": "A Node.js application that provides enriched information about musical artists using web scraping, Spotify API, and AI",
"main": "src/index.js",
"type": "module",
"scripts": {
"start": "node src/cli.js",
"server": "node src/server.js",
"dev": "nodemon src/server.js",
"test": "echo \"Error: no test specified\" && exit 1",
"pinecone-test": "node src/db/pinecone-diagnostic.js",
"kill-server": "node scripts/kill-server.js"
},
"keywords": [
"music",
"artists",
"spotify",
"ai",
"web-scraping",
"vector-database"
],
"author": "",
"license": "ISC",
"dependencies": {
"@pinecone-database/pinecone": "^1.1.2",
"axios": "^1.6.2",
"cheerio": "^1.0.0-rc.12",
"commander": "^11.1.0",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"openai": "^4.20.1",
"spotify-web-api-node": "^5.0.2"
},
"devDependencies": {
"nodemon": "^3.0.1"
}
}