-
Notifications
You must be signed in to change notification settings - Fork 97
/
Copy pathpackage.json
39 lines (39 loc) · 838 Bytes
/
package.json
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": "ttapi",
"description": "A turntable.fm API",
"version": "4.0.2",
"author": "Alain Gilbert <alain.gilbert.15@gmail.com> (http://agilbert.name/)",
"contributors": [
"Jeff Stieler <jeff.m.stieler@gmail.com> (http://jeffstieler.com)"
],
"dependencies": {
"node-fetch": "^2.6.1",
"ws": "^7.4.3"
},
"devDependencies": {
"dotenv": "^8.2.0"
},
"engines": {
"node": ">= 12"
},
"exports": {
".": {
"import": "./wrapper.mjs",
"default": "./src/index.js"
}
},
"keywords": [
"realtime",
"stickybits",
"turntable",
"turntable.fm"
],
"main": "./src/index.js",
"repository": {
"type": "git",
"url": "git://github.com/alaingilbert/Turntable-API.git"
},
"scripts": {
"start": "node --require dotenv/config ./examples/chat_bot.mjs"
}
}