@esphome/compose 0.0.1 → 0.1.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (1) hide show
  1. package/package.json +13 -6
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@esphome/compose",
3
- "version": "0.0.1",
3
+ "version": "0.1.2",
4
4
  "description": "ESPHome Compose SDK - TypeScript framework for generating ESPHome YAML",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",
@@ -25,6 +25,14 @@
25
25
  ],
26
26
  "author": "",
27
27
  "license": "MIT",
28
+ "repository": {
29
+ "type": "git",
30
+ "url": "git+https://github.com/xmlguy74/espcompose.git",
31
+ "directory": "packages/sdk"
32
+ },
33
+ "engines": {
34
+ "node": ">=22"
35
+ },
28
36
  "publishConfig": {
29
37
  "access": "public"
30
38
  },
@@ -32,10 +40,9 @@
32
40
  "yaml": "^2.4.0"
33
41
  },
34
42
  "devDependencies": {
35
- "@typescript-eslint/eslint-plugin": "^7.0.0",
36
- "@typescript-eslint/parser": "^7.0.0",
37
- "@types/node": "^20.0.0",
38
- "eslint": "^8.0.0",
43
+ "typescript-eslint": "^8.0.0",
44
+ "@types/node": "^22.0.0",
45
+ "eslint": "^9.0.0",
39
46
  "tsup": "^8.0.0",
40
47
  "tsx": "^4.0.0",
41
48
  "typescript": "^5.4.0"
@@ -44,7 +51,7 @@
44
51
  "build": "tsup src/index.ts --format cjs,esm --dts --tsconfig tsconfig.json",
45
52
  "clean": "rimraf dist",
46
53
  "codegen": "tsx tools/codegen/generate.ts",
47
- "lint": "eslint --ext .ts,.tsx src",
54
+ "lint": "eslint src",
48
55
  "test": "echo \"No tests yet\""
49
56
  }
50
57
  }