@appport/runtime 0.1.0 → 0.2.0

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 +3 -1
  2. package/package.json +3 -3
package/README.md CHANGED
@@ -4,9 +4,11 @@ The public, contract-driven entry point for AppPort applications.
4
4
 
5
5
  ```sh
6
6
  npm install @appport/runtime
7
- npx appport init --use api,webhooks,jobs
7
+ npx @appport/runtime init
8
8
  ```
9
9
 
10
+ `init` interactively selects capabilities and generates both `appport.toml` and the authoritative `feltdb.flow`. Use `--use api,jobs,webhooks` only for non-interactive automation.
11
+
10
12
  ```js
11
13
  import { appport } from '@appport/runtime';
12
14
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@appport/runtime",
3
- "version": "0.1.0",
3
+ "version": "0.2.0",
4
4
  "description": "Contract-driven AppPort application runtime",
5
5
  "type": "module",
6
6
  "exports": {
@@ -10,7 +10,7 @@
10
10
  }
11
11
  },
12
12
  "bin": {
13
- "appport": "./cli.js"
13
+ "appport-runtime": "./cli.js"
14
14
  },
15
15
  "files": [
16
16
  "cli.js",
@@ -19,7 +19,7 @@
19
19
  "README.md"
20
20
  ],
21
21
  "dependencies": {
22
- "@appport/services": "^0.2.0"
22
+ "@appport/services": "^0.2.1"
23
23
  },
24
24
  "keywords": [
25
25
  "appport",