-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
64 lines (64 loc) · 2.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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "esphome-ts",
"version": "3.3.1",
"description": "A TypeScript client for the Esphome Native API interface",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": "https://github.com/lucavb/esphome-ts",
"files": [
"dist/*"
],
"scripts": {
"build": "npx tsc",
"cbuild": "npm run clean && npm run build",
"clean": "rm -rf dist",
"format": "npx eslint --fix src/**/*.ts test/**/*.ts",
"lint": "npm run lint:commitlint && npm run lint:prettier",
"lint:commitlint": "commitlint -f origin/master",
"lint:prettier": "prettier \"**/*\" --check --ignore-unknown",
"lint:prettier:fix": "prettier \"**/*\" --write --ignore-unknown",
"prepack": "npm run format && npm run cbuild",
"semantic-release": "semantic-release",
"start": "ts-node-dev --project tsconfig.json src/run.ts",
"test": "npx jest --config jest.config.json"
},
"keywords": [
"esphome",
"typescript"
],
"author": "Luca Becker <[email protected]> (https://sunbury.xyz/)",
"license": "GPL-3.0",
"dependencies": {
"color-convert": "2.0.1",
"protobufjs": "7.2.3"
},
"peerDependencies": {
"rxjs": "^7.8.1"
},
"devDependencies": {
"@commitlint/cli": "17.6.3",
"@commitlint/config-conventional": "18.4.3",
"@semantic-release/changelog": "6.0.3",
"@semantic-release/git": "10.0.1",
"@types/color-convert": "2.0.0",
"@types/jest": "28.1.8",
"@types/node": "20.5.7",
"@typescript-eslint/eslint-plugin": "5.59.8",
"@typescript-eslint/parser": "5.59.5",
"eslint": "8.48.0",
"eslint-config-google": "0.14.0",
"eslint-config-prettier": "8.8.0",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-unused-imports": "2.0.0",
"jest": "28.1.3",
"jest-junit": "16.0.0",
"prettier": "2.8.8",
"prettier-eslint": "15.0.1",
"semantic-release": "21.0.2",
"ts-jest": "28.0.8",
"ts-node-dev": "2.0.0",
"ts-proto": "1.148.1",
"typescript": "5.0.4"
}
}