shortcutkit 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.
@@ -10,6 +10,8 @@ export interface Provenance {
10
10
  build: string;
11
11
  };
12
12
  workflowKit: string;
13
+ /** ActionKit.framework version; it defines the built-in actions WorkflowKit does not (Ask for Input, Show Alert, Count, ...). */
14
+ actionKit?: string;
13
15
  counts: {
14
16
  builtinActions: number;
15
17
  identifierStrings: number;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "shortcutkit",
3
- "version": "0.1.0",
3
+ "version": "0.2.0",
4
4
  "description": "Build, validate and sign Apple Shortcuts files. Every built-in action typed, straight from the Shortcuts engine.",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
@@ -39,10 +39,14 @@
39
39
  "homepage": "https://github.com/frontboat/shortcutkit#readme",
40
40
  "keywords": [
41
41
  "apple",
42
+ "apple-shortcuts",
42
43
  "shortcuts",
44
+ "shortcuts-app",
45
+ "workflowkit",
43
46
  "workflow",
44
47
  "automation",
45
48
  "macos",
49
+ "macos-automation",
46
50
  "ios",
47
51
  "plist"
48
52
  ],