-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.75 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/heatzy-api",
"version": "5.0.0",
"description": "Heatzy API for Node.js",
"keywords": [
"heatzy",
"api"
],
"homepage": "https://github.com/OlivierZal/heatzy-api#readme",
"bugs": {
"url": "https://github.com/OlivierZal/heatzy-api/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/OlivierZal/heatzy-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.7.9",
"https": "^1.0.0",
"luxon": "^3.5.0",
"source-map-support": "^0.5.21"
},
"devDependencies": {
"@eslint/js": "^9.19.0",
"@eslint/markdown": "^6.2.2",
"@helljs/eslint-import-resolver-x": "^1.1.0",
"@stylistic/eslint-plugin": "^3.0.1",
"@types/luxon": "^3.4.2",
"@types/node": "^22.13.0",
"eslint": "^9.19.0",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-package-json": "^0.21.1",
"eslint-plugin-perfectionist": "^4.7.0",
"eslint-plugin-yml": "^1.16.0",
"jsonc-eslint-parser": "^2.4.0",
"prettier": "^3.4.2",
"prettier-plugin-packagejson": "^2.5.8",
"typedoc": "^0.27.6",
"typedoc-plugin-markdown": "^4.4.1",
"typescript": "^5.7.3",
"typescript-eslint": "^8.22.0"
}
}