-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.84 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 1.84 KB
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
64
65
66
67
68
69
70
71
{
"name": "divera247-api-unofficial",
"version": "0.0.0-development",
"description": "Unofficial Divera 24/7 API Wrapper",
"scripts": {
"test": "jest",
"lint": "eslint ./src/",
"lint:fix": "eslint ./src/ --fix",
"build:release": "rm -fr dist/* && tsup src/index.ts --format esm,cjs --minify --dts src/index.ts",
"prepare": "husky install",
"semantic-release": "semantic-release"
},
"keywords": [
"divera",
"divera 24/7",
"divera api"
],
"files": [
"dist",
"LICENSE",
"README.md"
],
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
"import": "./dist/index.mjs",
"require": "./dist/index.js",
"node": "./dist/index.js",
"default": "./dist/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/timonmasberg/divera247.git"
},
"author": "Timon Masberg",
"license": "MIT",
"bugs": {
"url": "https://github.com/timonmasberg/divera247/issues"
},
"homepage": "https://github.com/timonmasberg/divera247#readme",
"dependencies": {
"axios": "^1.6.1"
},
"devDependencies": {
"@commitlint/cli": "^21.0.0",
"@commitlint/config-conventional": "^21.0.0",
"@types/axios": "0.14.4",
"@types/jest": "^30.0.0",
"@types/node": "24.9.1",
"@typescript-eslint/eslint-plugin": "8.59.2",
"@typescript-eslint/parser": "8.59.2",
"eslint": "8.57.1",
"eslint-config-prettier": "10.1.8",
"eslint-plugin-prettier": "5.5.5",
"husky": "^9.0.0",
"jest": "^30.0.0",
"lint-staged": "17.0.3",
"nodemon": "3.1.14",
"prettier": "3.8.3",
"semantic-release": "^25.0.0",
"ts-jest": "^29.1.1",
"ts-node": "10.9.2",
"tsup": "^8.0.0",
"typescript": "5.9.3"
},
"lint-staged": {
"*.ts": "eslint --cache --fix",
"*.js": "eslint --cache --fix"
}
}