@hallmaster/docker.js 0.0.7 → 0.0.9

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 (2) hide show
  1. package/README.md +1 -1
  2. package/package.json +7 -3
package/README.md CHANGED
@@ -41,7 +41,7 @@ Once you have instantiated the `DockerSocket` object and initialized it with the
41
41
  For instance, to fetch data from containers, you may use this snippet :
42
42
 
43
43
  ```typescript
44
- import ( DockerContainer ) from "@hallmaster/docker.js";
44
+ import { DockerContainer } from "@hallmaster/docker.js";
45
45
 
46
46
  (async function() {
47
47
  // ...
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@hallmaster/docker.js",
3
3
  "description": "A TypeScript Docker API wrapper mainly used for the Hallmaster project.",
4
- "version": "0.0.7",
4
+ "version": "0.0.9",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
7
7
  "private": false,
@@ -14,12 +14,16 @@
14
14
  "files": [
15
15
  "dist"
16
16
  ],
17
- "repository": "github:hallmasterorg/hallmaster-docker-wrapper",
18
- "homepage": "https://github.com/hallmasterorg/hallmaster-docker-wrapper#readme",
17
+ "repository": "github:hallmasterorg/hallmaster-docker.js",
18
+ "homepage": "https://github.com/hallmasterorg/hallmaster-docker.js#readme",
19
19
  "devDependencies": {
20
20
  "@types/node": "^25.0.9",
21
21
  "typescript": "^5.9.3"
22
22
  },
23
+ "keywords": [
24
+ "docker",
25
+ "hallmaster"
26
+ ],
23
27
  "scripts": {
24
28
  "clean": "rm -rf dist",
25
29
  "build": "tsc"