-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.2 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
{
"name": "automower-connect",
"version": "0.0.6",
"type": "module",
"description": "A nodejs package which allows communicating with the Automower Connect API",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"author": "Sascha Jocham",
"license": "MIT",
"dependencies": {
"moment": "^2.29.4",
"node-fetch": "^3.3.2",
"tslib": "~2.6.1",
"ws": "^8.14.2"
},
"devDependencies": {
"@types/node": "^18.17.5",
"@types/ws": "^8.5.5",
"@typescript-eslint/eslint-plugin": "6.4.0",
"@typescript-eslint/parser": "6.4.0",
"eslint": "~8.47.0",
"eslint-config-prettier": "~9.0.0",
"prettier": "~3.0.2",
"ts-node": "^10.9.1",
"typescript": "^5.1.6"
},
"scripts": {
"build": "tsc",
"watch": "tsc -w",
"prettier-format": "prettier --config .prettierrc 'src/**/*.ts' --write"
},
"repository": {
"type": "git",
"url": "https://github.com/jochamsa/automower-connect.git"
},
"keywords": [
"husqvarna",
"automower",
"automower connect",
"lawnmower",
"smart system"
],
"bugs": {
"url": "https://github.com/jochamsa/automower-connect/issues"
},
"homepage": "https://github.com/jochamsa/automower-connect#readme"
}