-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.28 KB
/
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
40
41
42
43
44
45
46
47
48
49
50
{
"name": "arlo.js",
"version": "1.1.3",
"description": "A library to interact with Arlo camera systems written in Typescript",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"format": "prettier --write '**/*.{ts}'",
"build": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/easton36/arlo.js.git"
},
"keywords": [
"Arlo",
"IOT",
"Camera",
"Camera System",
"Javascript",
"Typescript"
],
"author": "Easton (https://easton.gg)",
"license": "MIT License",
"bugs": {
"url": "https://github.com/easton36/arlo.js/issues"
},
"homepage": "https://github.com/easton36/arlo.js#readme",
"devDependencies": {
"@types/axios": "^0.14.0",
"@types/events": "^3.0.0",
"@types/eventsource": "^1.1.9",
"@types/node": "^18.0.6",
"@types/readline-sync": "^1.4.4",
"@types/tough-cookie": "^4.0.2",
"@typescript-eslint/eslint-plugin": "^5.30.7",
"@typescript-eslint/parser": "^5.30.7",
"eslint": "^8.20.0",
"eslint-config-prettier": "^8.5.0",
"jsdoc": "^3.6.10",
"prettier": "2.7.1"
},
"dependencies": {
"axios": "^0.27.2",
"axios-cookiejar-support": "^4.0.2",
"events": "^3.3.0",
"readline-sync": "^1.4.10",
"tough-cookie": "^4.0.0"
}
}