@valon-technologies/gestalt 0.0.1-alpha.1 → 0.0.1-alpha.8

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
@@ -142,19 +142,3 @@ bun install
142
142
  bun run build:proto
143
143
  bun run check
144
144
  ```
145
-
146
- ## Publishing
147
-
148
- The SDK is published to npm as `@valon-technologies/gestalt`.
149
-
150
- Release tags stay aligned with the repo's SDK tag convention:
151
-
152
- - `sdk/typescript/v0.0.1`
153
- - `sdk/typescript/v0.0.1-alpha.1`
154
- - `sdk/typescript/v0.0.1-beta.1`
155
- - `sdk/typescript/v0.0.1-rc.1`
156
-
157
- The release workflow uses Bun for installation and validation, then publishes
158
- with npm Trusted Publishing from GitHub Actions. Stable releases use the
159
- default `latest` dist-tag; prereleases are published under `alpha`, `beta`, or
160
- `rc`.
package/package.json CHANGED
@@ -1,18 +1,12 @@
1
1
  {
2
2
  "name": "@valon-technologies/gestalt",
3
- "version": "0.0.1-alpha.1",
3
+ "version": "0.0.1-alpha.8",
4
4
  "description": "TypeScript SDK for Gestalt executable providers",
5
- "license": "Apache-2.0",
6
5
  "type": "module",
7
6
  "repository": {
8
7
  "type": "git",
9
- "url": "https://github.com/valon-technologies/gestalt",
10
- "directory": "sdk/typescript"
8
+ "url": "git+https://github.com/valon-technologies/gestalt.git"
11
9
  },
12
- "bugs": {
13
- "url": "https://github.com/valon-technologies/gestalt/issues"
14
- },
15
- "homepage": "https://github.com/valon-technologies/gestalt/tree/main/sdk/typescript#readme",
16
10
  "exports": {
17
11
  ".": "./src/index.ts",
18
12
  "./build": "./src/build.ts",
@@ -21,8 +15,8 @@
21
15
  "./target": "./src/target.ts"
22
16
  },
23
17
  "bin": {
24
- "gestalt-ts-build": "./src/build.ts",
25
- "gestalt-ts-runtime": "./src/runtime.ts"
18
+ "gestalt-ts-build": "src/build.ts",
19
+ "gestalt-ts-runtime": "src/runtime.ts"
26
20
  },
27
21
  "files": [
28
22
  "src",
package/src/build.ts CHANGED
File without changes
package/src/runtime.ts CHANGED
File without changes