fossekall-interface 0.1.3 → 0.1.5

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.
package/README.md CHANGED
@@ -79,7 +79,7 @@ npm version patch
79
79
  2. Publish:
80
80
 
81
81
  ```bash
82
- npm publish --access public
82
+ npm publish --access private
83
83
  ```
84
84
 
85
85
  If you publish using a token, configure `.npmrc` with:
@@ -0,0 +1 @@
1
+ export * from "./telemetry";
@@ -0,0 +1 @@
1
+ export * from "./telemetry";
package/dist/index.d.ts CHANGED
@@ -1 +1 @@
1
- export * from "./ecu/telemetry";
1
+ export * as ecu from "./ecu";
package/dist/index.js CHANGED
@@ -1 +1 @@
1
- export * from "./ecu/telemetry";
1
+ export * as ecu from "./ecu";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "fossekall-interface",
3
- "version": "0.1.3",
3
+ "version": "0.1.5",
4
4
  "description": "API contracts between client and server (rocket and GUI)",
5
5
  "license": "ISC",
6
6
  "author": "Propulse",
@@ -12,12 +12,13 @@
12
12
  ],
13
13
  "scripts": {
14
14
  "test": "echo \"Error: no test specified\" && exit 1",
15
+ "prebuild": "ts-node scripts/generate-index.ts",
15
16
  "build": "tsc -p tsconfig.json",
16
- "prepack": "npm run build",
17
- "publish": "npm publish --access private"
17
+ "prepack": "npm run build"
18
18
  },
19
19
  "devDependencies": {
20
- "typescript": "^5.9.3"
20
+ "typescript": "^5.9.3",
21
+ "ts-node": "^10.9.2"
21
22
  },
22
23
  "dependencies": {
23
24
  "typed-binary": "^4.3.2"