-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.77 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
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "@olivierzal/melcloud-api",
"version": "17.9.0",
"description": "MELCloud API for Node.js",
"keywords": [
"melcloud",
"api"
],
"homepage": "https://github.com/OlivierZal/melcloud-api#readme",
"bugs": {
"url": "https://github.com/OlivierZal/melcloud-api/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/OlivierZal/melcloud-api.git"
},
"license": "ISC",
"author": "Olivier Zalmanski",
"type": "module",
"exports": "./dist/main.js",
"types": "dist/main.d.ts",
"files": [
"dist",
"src"
],
"scripts": {
"build": "tsc",
"docs": "typedoc && npm run format:docs",
"format": "prettier . --check",
"format:docs": "prettier README.md --ignore-path --write",
"format:fix": "prettier . --write",
"lint": "eslint .",
"lint:fix": "npm run lint -- --fix",
"prepare": "npm run docs && npm run lint:fix && npm run format:fix && npm run build"
},
"dependencies": {
"axios": "^1.8.4",
"https": "^1.0.0",
"luxon": "^3.6.1",
"source-map-support": "^0.5.21"
},
"devDependencies": {
"@eslint/js": "^9.24.0",
"@eslint/markdown": "^6.3.0",
"@stylistic/eslint-plugin": "^4.2.0",
"@types/luxon": "^3.6.2",
"@types/node": "^22.14.1",
"eslint": "^9.24.0",
"eslint-config-prettier": "^10.1.2",
"eslint-import-resolver-typescript": "^4.3.2",
"eslint-plugin-import-x": "^4.10.3",
"eslint-plugin-package-json": "^0.29.1",
"eslint-plugin-perfectionist": "^4.11.0",
"eslint-plugin-yml": "^1.17.0",
"jsonc-eslint-parser": "^2.4.0",
"prettier": "^3.5.3",
"prettier-plugin-packagejson": "^2.5.10",
"typedoc": "^0.28.2",
"typedoc-plugin-markdown": "^4.6.2",
"typescript": "^5.8.3",
"typescript-eslint": "^8.29.1"
}
}