-
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 736 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 736 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
{
"name": "blynk",
"version": "0.1.0",
"description": "✨ Node.js Client for Blynk (Legacy) Mobile App Protocol",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/maythiwat/node-blynk.git"
},
"homepage": "https://github.com/maythiwat/node-blynk",
"keywords": [
"blynk",
"blynk-legacy",
"blynk-protocol",
"iot",
"client",
"arduino",
"esp8266",
"reverse-engineer"
],
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"build": "tsc --build --force"
},
"files": [
"dist/**/*"
],
"dependencies": {},
"devDependencies": {
"@types/node": "^17.0.42",
"ts-node": "^10.8.1",
"typescript": "^4.7.4"
}
}