-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.64 KB
/
Copy pathpackage.json
File metadata and controls
88 lines (88 loc) · 2.64 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "freeathome-local-api-client",
"version": "1.15.0",
"preview": false,
"description": "A client library for the BUSCH-JAEGER free@home local API implemented in TypeScript",
"repository": {
"type": "git",
"url": "git+https://github.com/lion-and-bear/freeathome-local-api-client.git"
},
"keywords": [
"free@home",
"freeathome",
"buschjaeger",
"busch-jaeger",
"abb",
"smarthome",
"api-client",
"typescript"
],
"author": {
"email": "info@philipgerke.com",
"name": "Philip Gerke",
"url": "https://www.philipgerke.com"
},
"homepage": "https://github.com/lion-and-bear/freeathome-local-api-client#readme",
"license": "MIT",
"bugs": {
"url": "https://github.com/lion-and-bear/freeathome-local-api-client/issues"
},
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": {
"test-cjs": "./dist/index.js",
"test-esm": "./dist/index.mjs",
"default": "./dist/index.js"
},
"import": {
"test-cjs": "./dist/index.js",
"test-esm": "./dist/index.mjs",
"default": "./dist/index.mjs"
}
}
},
"files": [
"dist"
],
"scripts": {
"clean": "rimraf dist coverage",
"build": "pnpm clean && tsup --config tsup.config.ts",
"build:test": "pnpm clean && tsup --config tsup.test.config.ts",
"test:esm": "NODE_OPTIONS=\"--conditions=test-esm\" jasmine --config=jasmine.json",
"test:cjs": "NODE_OPTIONS=\"--conditions=test-cjs\" jasmine --config=jasmine.json",
"test:coverage": "pnpm build:test && c8 pnpm run test:cjs",
"lint": "eslint . --fix --max-warnings=0",
"prepublishOnly": "pnpm lint && pnpm build"
},
"dependencies": {
"rxjs": "^7.8.2",
"ts-interface-checker": "^1.0.2",
"ws": "^8.21.3"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.6",
"@eslint/js": "^10.0.1",
"@types/jasmine": "^6.0.0",
"@types/node": "^24.13.3",
"@types/ws": "^8.18.1",
"@typescript-eslint/eslint-plugin": "^8.67.0",
"@typescript-eslint/parser": "^8.67.0",
"c8": "^12.0.0",
"eslint": "^10.8.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.6",
"globals": "^17.9.0",
"jasmine": "^6.3.0",
"jasmine-spec-reporter": "^7.0.0",
"prettier": "^3.9.6",
"rimraf": "^6.1.3",
"ts-interface-builder": "^0.3.3",
"tsup": "^8.5.1",
"typescript": "^6.0.3"
},
"packageManager": "pnpm@11.21.0+sha512.521705bce689924eac72f5a3587122f362689ef6571e55ba80076fd637c11132ecffada26fad4ea79c485bfddbfd3d5a2a5b05805a77e893de71ec8a6cca3bb1"
}