-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 1.82 KB
/
Copy pathpackage.json
File metadata and controls
80 lines (80 loc) · 1.82 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "spotuya",
"version": "2.2.1",
"description": "A simple background process to automatically change the color of your Tuya LED lights based on the cover art of the song you're listening to on Spotify.",
"main": "dist/index.js",
"repository": "https://github.com/xbl4z3r/spotuya",
"bugs": {
"url": "https://github.com/xbl4z3r/spotuya/issues"
},
"homepage": "https://github.com/xbl4z3r/spotuya#readme",
"bin": {
"spotuya": "dist/index.js"
},
"scripts": {
"build": "npm run clean && tsc",
"clean": "rimraf dist",
"prepublishOnly": "npm run build",
"postinstall": "npm run build"
},
"files": [
"dist"
],
"type": "module",
"keywords": [
"tuya",
"spotify",
"automatation",
"lights",
"music",
"color",
"iot",
"nodejs",
"javascript",
"script",
"integration",
"api",
"spotify-web-api-node",
"tuyapi",
"node-vibrant",
"color-convert",
"chalk",
"xbl4z3r",
"spotuya",
"spotify-tuya",
"rgb",
"replit",
"express",
"inquirer",
"request",
"request-promise",
"open",
"dotenv"
],
"author": "xbl4z3r",
"license": "GPL-3.0",
"dependencies": {
"chalk": "^5.3.0",
"color-convert": "^3.0.1",
"dotenv": "^16.4.5",
"express": "^4.21.1",
"inquirer": "9.3.7",
"node-vibrant": "^3.2.1-alpha.1",
"open": "^10.0.2",
"request": "^2.88.2",
"request-promise": "^4.2.6",
"spotify-web-api-node": "^5.0.2",
"tuyapi": "^7.5.2",
"typescript": "^5.8.2"
},
"devDependencies": {
"@tuya/tuya-connector-nodejs": "^2.1.2",
"@types/color-convert": "^2.0.4",
"@types/express": "^5.0.1",
"@types/inquirer": "^9.0.7",
"@types/node": "^22.13.14",
"@types/request": "^2.48.12",
"@types/spotify-web-api-node": "^5.0.11",
"rimraf": "^6.0.1"
}
}