@positronic/cli 0.0.21 → 0.0.22

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/dist/src/cli.js CHANGED
@@ -159,6 +159,7 @@ import { BrainCommand } from './commands/brain.js';
159
159
  import { ResourcesCommand } from './commands/resources.js';
160
160
  import { ScheduleCommand } from './commands/schedule.js';
161
161
  import { SecretCommand } from './commands/secret.js';
162
+ import { PagesCommand } from './commands/pages.js';
162
163
  import { readFileSync } from 'fs';
163
164
  import { fileURLToPath } from 'url';
164
165
  import { dirname, join } from 'path';
@@ -213,6 +214,7 @@ export function buildCli(options) {
213
214
  var brainCommand = new BrainCommand();
214
215
  var scheduleCommand = new ScheduleCommand();
215
216
  var secretCommand = new SecretCommand(server);
217
+ var pagesCommand = new PagesCommand();
216
218
  // Main CLI definition
217
219
  var cli = yargs(argv).scriptName('positronic').usage('Usage: $0 <command> [options]').version(version).alias('v', 'version').help('h').alias('h', 'help').wrap(null).strictCommands().exitProcess(exitProcess);
218
220
  // --- Project Management Commands (Global Mode Only) ---
@@ -795,6 +797,28 @@ export function buildCli(options) {
795
797
  });
796
798
  return yargsSchedule;
797
799
  });
800
+ // --- Pages Management Commands ---
801
+ cli = cli.command('pages', 'Manage pages created by brains\n', function(yargsPages) {
802
+ yargsPages.command('list', 'List all pages\n', {}, function(argv) {
803
+ var element = pagesCommand.list(argv);
804
+ render(element);
805
+ }).command('delete <slug>', 'Delete a page by slug\n', function(yargsDelete) {
806
+ return yargsDelete.positional('slug', {
807
+ describe: 'Slug of the page to delete',
808
+ type: 'string',
809
+ demandOption: true
810
+ }).option('force', {
811
+ describe: 'Skip confirmation prompt',
812
+ type: 'boolean',
813
+ alias: 'f',
814
+ default: false
815
+ }).example('$0 pages delete my-page', 'Delete a page by slug').example('$0 pages delete my-page --force', 'Delete without confirmation');
816
+ }, function(argv) {
817
+ var element = pagesCommand.delete(argv);
818
+ render(element);
819
+ }).demandCommand(1, 'You need to specify a subcommand');
820
+ return yargsPages;
821
+ });
798
822
  // --- Secret Management Commands ---
799
823
  cli = cli.command('secret', 'Manage secrets for your brains\n', function(yargsSecret) {
800
824
  yargsSecret.command('list', 'List all secrets\n', {}, function() {
@@ -0,0 +1,47 @@
1
+ function _class_call_check(instance, Constructor) {
2
+ if (!(instance instanceof Constructor)) {
3
+ throw new TypeError("Cannot call a class as a function");
4
+ }
5
+ }
6
+ function _defineProperties(target, props) {
7
+ for(var i = 0; i < props.length; i++){
8
+ var descriptor = props[i];
9
+ descriptor.enumerable = descriptor.enumerable || false;
10
+ descriptor.configurable = true;
11
+ if ("value" in descriptor) descriptor.writable = true;
12
+ Object.defineProperty(target, descriptor.key, descriptor);
13
+ }
14
+ }
15
+ function _create_class(Constructor, protoProps, staticProps) {
16
+ if (protoProps) _defineProperties(Constructor.prototype, protoProps);
17
+ if (staticProps) _defineProperties(Constructor, staticProps);
18
+ return Constructor;
19
+ }
20
+ import React from 'react';
21
+ import { PagesList } from '../components/pages-list.js';
22
+ import { PageDelete } from '../components/page-delete.js';
23
+ export var PagesCommand = /*#__PURE__*/ function() {
24
+ "use strict";
25
+ function PagesCommand() {
26
+ _class_call_check(this, PagesCommand);
27
+ }
28
+ _create_class(PagesCommand, [
29
+ {
30
+ key: "list",
31
+ value: function list(_args) {
32
+ return React.createElement(PagesList, {});
33
+ }
34
+ },
35
+ {
36
+ key: "delete",
37
+ value: function _delete(param) {
38
+ var slug = param.slug, force = param.force;
39
+ return React.createElement(PageDelete, {
40
+ slug: slug,
41
+ force: force
42
+ });
43
+ }
44
+ }
45
+ ]);
46
+ return PagesCommand;
47
+ }();
@@ -0,0 +1,161 @@
1
+ function _array_like_to_array(arr, len) {
2
+ if (len == null || len > arr.length) len = arr.length;
3
+ for(var i = 0, arr2 = new Array(len); i < len; i++)arr2[i] = arr[i];
4
+ return arr2;
5
+ }
6
+ function _array_with_holes(arr) {
7
+ if (Array.isArray(arr)) return arr;
8
+ }
9
+ function _iterable_to_array_limit(arr, i) {
10
+ var _i = arr == null ? null : typeof Symbol !== "undefined" && arr[Symbol.iterator] || arr["@@iterator"];
11
+ if (_i == null) return;
12
+ var _arr = [];
13
+ var _n = true;
14
+ var _d = false;
15
+ var _s, _e;
16
+ try {
17
+ for(_i = _i.call(arr); !(_n = (_s = _i.next()).done); _n = true){
18
+ _arr.push(_s.value);
19
+ if (i && _arr.length === i) break;
20
+ }
21
+ } catch (err) {
22
+ _d = true;
23
+ _e = err;
24
+ } finally{
25
+ try {
26
+ if (!_n && _i["return"] != null) _i["return"]();
27
+ } finally{
28
+ if (_d) throw _e;
29
+ }
30
+ }
31
+ return _arr;
32
+ }
33
+ function _non_iterable_rest() {
34
+ throw new TypeError("Invalid attempt to destructure non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.");
35
+ }
36
+ function _sliced_to_array(arr, i) {
37
+ return _array_with_holes(arr) || _iterable_to_array_limit(arr, i) || _unsupported_iterable_to_array(arr, i) || _non_iterable_rest();
38
+ }
39
+ function _unsupported_iterable_to_array(o, minLen) {
40
+ if (!o) return;
41
+ if (typeof o === "string") return _array_like_to_array(o, minLen);
42
+ var n = Object.prototype.toString.call(o).slice(8, -1);
43
+ if (n === "Object" && o.constructor) n = o.constructor.name;
44
+ if (n === "Map" || n === "Set") return Array.from(n);
45
+ if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _array_like_to_array(o, minLen);
46
+ }
47
+ import React, { useState, useEffect, useRef } from 'react';
48
+ import { Box, Text, useStdin, useApp } from 'ink';
49
+ import { ErrorComponent } from './error.js';
50
+ import { useApiDelete } from '../hooks/useApi.js';
51
+ export var PageDelete = function(param) {
52
+ var slug = param.slug, force = param.force;
53
+ var _useState = _sliced_to_array(useState(force), 2), confirmed = _useState[0], setConfirmed = _useState[1];
54
+ var _useState1 = _sliced_to_array(useState(false), 2), deleted = _useState1[0], setDeleted = _useState1[1];
55
+ var _useState2 = _sliced_to_array(useState(''), 2), input = _useState2[0], setInput = _useState2[1];
56
+ var _useStdin = useStdin(), stdin = _useStdin.stdin, setRawMode = _useStdin.setRawMode;
57
+ var exit = useApp().exit;
58
+ var isDeleting = useRef(false);
59
+ var _useApiDelete = useApiDelete('page'), deletePage = _useApiDelete.execute, loading = _useApiDelete.loading, error = _useApiDelete.error;
60
+ useEffect(function() {
61
+ if (stdin && !confirmed && !deleted) {
62
+ setRawMode(true);
63
+ var handleData = function(data) {
64
+ var char = data.toString();
65
+ if (char === '\r' || char === '\n') {
66
+ if (input.toLowerCase() === 'yes') {
67
+ setConfirmed(true);
68
+ } else {
69
+ exit();
70
+ }
71
+ } else if (char === '\u0003') {
72
+ exit();
73
+ } else if (char === '\u007F' || char === '\b') {
74
+ setInput(function(prev) {
75
+ return prev.slice(0, -1);
76
+ });
77
+ } else {
78
+ setInput(function(prev) {
79
+ return prev + char;
80
+ });
81
+ }
82
+ };
83
+ stdin.on('data', handleData);
84
+ return function() {
85
+ stdin.off('data', handleData);
86
+ setRawMode(false);
87
+ };
88
+ }
89
+ }, [
90
+ stdin,
91
+ setRawMode,
92
+ confirmed,
93
+ deleted,
94
+ input,
95
+ exit
96
+ ]);
97
+ useEffect(function() {
98
+ if (confirmed && !deleted && !isDeleting.current) {
99
+ isDeleting.current = true;
100
+ deletePage("/pages/".concat(encodeURIComponent(slug))).then(function() {
101
+ setDeleted(true);
102
+ }).catch(function() {
103
+ // Error is already handled by useApiDelete
104
+ }).finally(function() {
105
+ isDeleting.current = false;
106
+ });
107
+ }
108
+ }, [
109
+ confirmed,
110
+ deleted,
111
+ slug
112
+ ]);
113
+ if (error) {
114
+ var _error_message;
115
+ // Check if it's a 404 error
116
+ if ((_error_message = error.message) === null || _error_message === void 0 ? void 0 : _error_message.includes('404')) {
117
+ return /*#__PURE__*/ React.createElement(Box, {
118
+ flexDirection: "column"
119
+ }, /*#__PURE__*/ React.createElement(Text, {
120
+ color: "red"
121
+ }, "Page not found"), /*#__PURE__*/ React.createElement(Box, {
122
+ marginTop: 1,
123
+ paddingLeft: 2
124
+ }, /*#__PURE__*/ React.createElement(Text, null, "No page found with slug: ", slug)));
125
+ }
126
+ return /*#__PURE__*/ React.createElement(ErrorComponent, {
127
+ error: error
128
+ });
129
+ }
130
+ if (loading) {
131
+ return /*#__PURE__*/ React.createElement(Box, null, /*#__PURE__*/ React.createElement(Text, null, "Deleting page..."));
132
+ }
133
+ if (deleted) {
134
+ return /*#__PURE__*/ React.createElement(Box, {
135
+ flexDirection: "column"
136
+ }, /*#__PURE__*/ React.createElement(Text, {
137
+ color: "green"
138
+ }, "Page deleted successfully!"), /*#__PURE__*/ React.createElement(Box, {
139
+ marginTop: 1,
140
+ paddingLeft: 2
141
+ }, /*#__PURE__*/ React.createElement(Text, {
142
+ dimColor: true
143
+ }, "Slug: ", slug)));
144
+ }
145
+ if (!confirmed) {
146
+ return /*#__PURE__*/ React.createElement(Box, {
147
+ flexDirection: "column"
148
+ }, /*#__PURE__*/ React.createElement(Text, {
149
+ bold: true,
150
+ color: "yellow"
151
+ }, "Warning: This will permanently delete the page"), /*#__PURE__*/ React.createElement(Box, {
152
+ marginTop: 1,
153
+ marginBottom: 1,
154
+ paddingLeft: 2,
155
+ flexDirection: "column"
156
+ }, /*#__PURE__*/ React.createElement(Text, null, "Slug: ", slug), /*#__PURE__*/ React.createElement(Text, {
157
+ dimColor: true
158
+ }, "The page will no longer be accessible.")), /*#__PURE__*/ React.createElement(Text, null, 'Type "yes" to confirm deletion: ', input));
159
+ }
160
+ return null;
161
+ };
@@ -0,0 +1,141 @@
1
+ function _array_like_to_array(arr, len) {
2
+ if (len == null || len > arr.length) len = arr.length;
3
+ for(var i = 0, arr2 = new Array(len); i < len; i++)arr2[i] = arr[i];
4
+ return arr2;
5
+ }
6
+ function _array_without_holes(arr) {
7
+ if (Array.isArray(arr)) return _array_like_to_array(arr);
8
+ }
9
+ function _iterable_to_array(iter) {
10
+ if (typeof Symbol !== "undefined" && iter[Symbol.iterator] != null || iter["@@iterator"] != null) return Array.from(iter);
11
+ }
12
+ function _non_iterable_spread() {
13
+ throw new TypeError("Invalid attempt to spread non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.");
14
+ }
15
+ function _to_consumable_array(arr) {
16
+ return _array_without_holes(arr) || _iterable_to_array(arr) || _unsupported_iterable_to_array(arr) || _non_iterable_spread();
17
+ }
18
+ function _unsupported_iterable_to_array(o, minLen) {
19
+ if (!o) return;
20
+ if (typeof o === "string") return _array_like_to_array(o, minLen);
21
+ var n = Object.prototype.toString.call(o).slice(8, -1);
22
+ if (n === "Object" && o.constructor) n = o.constructor.name;
23
+ if (n === "Map" || n === "Set") return Array.from(n);
24
+ if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _array_like_to_array(o, minLen);
25
+ }
26
+ import React from 'react';
27
+ import { Box, Text } from 'ink';
28
+ import { ErrorComponent } from './error.js';
29
+ import { useApiGet } from '../hooks/useApi.js';
30
+ // Helper to format dates consistently
31
+ var formatDate = function(isoString) {
32
+ var date = new Date(isoString);
33
+ return date.toLocaleDateString() + ' ' + date.toLocaleTimeString();
34
+ };
35
+ // Helper to format file size
36
+ var formatSize = function(bytes) {
37
+ if (bytes < 1024) return "".concat(bytes, " B");
38
+ if (bytes < 1024 * 1024) return "".concat((bytes / 1024).toFixed(1), " KB");
39
+ return "".concat((bytes / (1024 * 1024)).toFixed(1), " MB");
40
+ };
41
+ // Helper to truncate text to fit column width
42
+ var truncate = function(text, maxWidth) {
43
+ if (text.length <= maxWidth) return text;
44
+ return text.substring(0, maxWidth - 3) + '...';
45
+ };
46
+ // Helper to pad text to column width
47
+ var padRight = function(text, width) {
48
+ return text + ' '.repeat(Math.max(0, width - text.length));
49
+ };
50
+ export var PagesList = function() {
51
+ var _useApiGet = useApiGet('/pages'), data = _useApiGet.data, loading = _useApiGet.loading, error = _useApiGet.error;
52
+ if (error) {
53
+ return /*#__PURE__*/ React.createElement(ErrorComponent, {
54
+ error: error
55
+ });
56
+ }
57
+ if (loading) {
58
+ return /*#__PURE__*/ React.createElement(Box, null, /*#__PURE__*/ React.createElement(Text, null, "Loading pages..."));
59
+ }
60
+ if (!data || data.pages.length === 0) {
61
+ return /*#__PURE__*/ React.createElement(Box, {
62
+ flexDirection: "column"
63
+ }, /*#__PURE__*/ React.createElement(Text, null, "No pages found."), /*#__PURE__*/ React.createElement(Box, {
64
+ marginTop: 1
65
+ }, /*#__PURE__*/ React.createElement(Text, {
66
+ dimColor: true
67
+ }, "Pages are created by brains using pages.create() in step actions.")));
68
+ }
69
+ // Sort pages by creation date (newest first)
70
+ var sortedPages = _to_consumable_array(data.pages).sort(function(a, b) {
71
+ return new Date(b.createdAt).getTime() - new Date(a.createdAt).getTime();
72
+ });
73
+ // Define column widths
74
+ var columns = {
75
+ slug: {
76
+ header: 'Slug',
77
+ width: 25
78
+ },
79
+ persist: {
80
+ header: 'Persist',
81
+ width: 8
82
+ },
83
+ size: {
84
+ header: 'Size',
85
+ width: 10
86
+ },
87
+ brainRunId: {
88
+ header: 'Brain Run ID',
89
+ width: 20
90
+ },
91
+ created: {
92
+ header: 'Created',
93
+ width: 22
94
+ }
95
+ };
96
+ // Calculate total width for separator
97
+ var totalWidth = Object.values(columns).reduce(function(sum, col) {
98
+ return sum + col.width + 2;
99
+ }, 0) - 2;
100
+ return /*#__PURE__*/ React.createElement(Box, {
101
+ flexDirection: "column",
102
+ paddingTop: 1,
103
+ paddingBottom: 1
104
+ }, /*#__PURE__*/ React.createElement(Text, {
105
+ bold: true
106
+ }, "Found ", data.count, " page", data.count === 1 ? '' : 's', ":"), /*#__PURE__*/ React.createElement(Box, {
107
+ marginTop: 1,
108
+ flexDirection: "column"
109
+ }, /*#__PURE__*/ React.createElement(Box, null, /*#__PURE__*/ React.createElement(Text, {
110
+ bold: true,
111
+ color: "cyan"
112
+ }, padRight(columns.slug.header, columns.slug.width)), /*#__PURE__*/ React.createElement(Text, null, " "), /*#__PURE__*/ React.createElement(Text, {
113
+ bold: true,
114
+ color: "cyan"
115
+ }, padRight(columns.persist.header, columns.persist.width)), /*#__PURE__*/ React.createElement(Text, null, " "), /*#__PURE__*/ React.createElement(Text, {
116
+ bold: true,
117
+ color: "cyan"
118
+ }, padRight(columns.size.header, columns.size.width)), /*#__PURE__*/ React.createElement(Text, null, " "), /*#__PURE__*/ React.createElement(Text, {
119
+ bold: true,
120
+ color: "cyan"
121
+ }, padRight(columns.brainRunId.header, columns.brainRunId.width)), /*#__PURE__*/ React.createElement(Text, null, " "), /*#__PURE__*/ React.createElement(Text, {
122
+ bold: true,
123
+ color: "cyan"
124
+ }, padRight(columns.created.header, columns.created.width))), /*#__PURE__*/ React.createElement(Box, null, /*#__PURE__*/ React.createElement(Text, {
125
+ dimColor: true
126
+ }, '─'.repeat(totalWidth))), sortedPages.map(function(page) {
127
+ return /*#__PURE__*/ React.createElement(Box, {
128
+ key: page.slug
129
+ }, /*#__PURE__*/ React.createElement(Text, null, padRight(truncate(page.slug, columns.slug.width), columns.slug.width)), /*#__PURE__*/ React.createElement(Text, null, " "), /*#__PURE__*/ React.createElement(Text, {
130
+ color: page.persist ? 'green' : 'yellow'
131
+ }, padRight(page.persist ? 'Yes' : 'No', columns.persist.width)), /*#__PURE__*/ React.createElement(Text, null, " "), /*#__PURE__*/ React.createElement(Text, null, padRight(formatSize(page.size), columns.size.width)), /*#__PURE__*/ React.createElement(Text, null, " "), /*#__PURE__*/ React.createElement(Text, {
132
+ dimColor: true
133
+ }, padRight(truncate(page.brainRunId, columns.brainRunId.width), columns.brainRunId.width)), /*#__PURE__*/ React.createElement(Text, null, " "), /*#__PURE__*/ React.createElement(Text, {
134
+ dimColor: true
135
+ }, padRight(formatDate(page.createdAt), columns.created.width)));
136
+ })), /*#__PURE__*/ React.createElement(Box, {
137
+ marginTop: 1
138
+ }, /*#__PURE__*/ React.createElement(Text, {
139
+ dimColor: true
140
+ }, "Tip: View a page URL by visiting your deployment at /pages/<slug>")));
141
+ };
@@ -1 +1 @@
1
- {"version":3,"file":"cli.d.ts","sourceRoot":"","sources":["../../src/cli.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,MAAM,OAAO,CAAC;AAO1B,OAAO,KAAK,EAAE,mBAAmB,EAAE,MAAM,kBAAkB,CAAC;AAK5D,MAAM,WAAW,UAAU;IACzB,IAAI,CAAC,EAAE,MAAM,EAAE,CAAC;IAChB,MAAM,CAAC,EAAE,mBAAmB,CAAC;IAC7B,WAAW,CAAC,EAAE,OAAO,CAAC;IACtB,MAAM,EAAE,CAAC,OAAO,EAAE,KAAK,CAAC,YAAY,KAAK,GAAG,CAAC;CAC9C;AAoBD,wBAAgB,QAAQ,CAAC,OAAO,EAAE,UAAU,4BAogC3C"}
1
+ {"version":3,"file":"cli.d.ts","sourceRoot":"","sources":["../../src/cli.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,MAAM,OAAO,CAAC;AAQ1B,OAAO,KAAK,EAAE,mBAAmB,EAAE,MAAM,kBAAkB,CAAC;AAK5D,MAAM,WAAW,UAAU;IACzB,IAAI,CAAC,EAAE,MAAM,EAAE,CAAC;IAChB,MAAM,CAAC,EAAE,mBAAmB,CAAC;IAC7B,WAAW,CAAC,EAAE,OAAO,CAAC;IACtB,MAAM,EAAE,CAAC,OAAO,EAAE,KAAK,CAAC,YAAY,KAAK,GAAG,CAAC;CAC9C;AAoBD,wBAAgB,QAAQ,CAAC,OAAO,EAAE,UAAU,4BAqjC3C"}
@@ -0,0 +1,15 @@
1
+ import type { ArgumentsCamelCase } from 'yargs';
2
+ import React from 'react';
3
+ interface PagesListArgs {
4
+ }
5
+ interface PageDeleteArgs {
6
+ slug: string;
7
+ force: boolean;
8
+ }
9
+ export declare class PagesCommand {
10
+ constructor();
11
+ list(_args: ArgumentsCamelCase<PagesListArgs>): React.ReactElement;
12
+ delete({ slug, force }: ArgumentsCamelCase<PageDeleteArgs>): React.ReactElement;
13
+ }
14
+ export {};
15
+ //# sourceMappingURL=pages.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"pages.d.ts","sourceRoot":"","sources":["../../../src/commands/pages.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,kBAAkB,EAAE,MAAM,OAAO,CAAC;AAChD,OAAO,KAAK,MAAM,OAAO,CAAC;AAI1B,UAAU,aAAa;CAEtB;AAED,UAAU,cAAc;IACtB,IAAI,EAAE,MAAM,CAAC;IACb,KAAK,EAAE,OAAO,CAAC;CAChB;AAED,qBAAa,YAAY;;IAGvB,IAAI,CAAC,KAAK,EAAE,kBAAkB,CAAC,aAAa,CAAC,GAAG,KAAK,CAAC,YAAY;IAIlE,MAAM,CAAC,EAAE,IAAI,EAAE,KAAK,EAAE,EAAE,kBAAkB,CAAC,cAAc,CAAC,GAAG,KAAK,CAAC,YAAY;CAMhF"}
@@ -0,0 +1,7 @@
1
+ interface PageDeleteProps {
2
+ slug: string;
3
+ force: boolean;
4
+ }
5
+ export declare const PageDelete: ({ slug, force }: PageDeleteProps) => import("react/jsx-runtime").JSX.Element | null;
6
+ export {};
7
+ //# sourceMappingURL=page-delete.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"page-delete.d.ts","sourceRoot":"","sources":["../../../src/components/page-delete.tsx"],"names":[],"mappings":"AAKA,UAAU,eAAe;IACvB,IAAI,EAAE,MAAM,CAAC;IACb,KAAK,EAAE,OAAO,CAAC;CAChB;AAED,eAAO,MAAM,UAAU,GAAI,iBAAiB,eAAe,mDAyG1D,CAAC"}
@@ -0,0 +1,2 @@
1
+ export declare const PagesList: () => import("react/jsx-runtime").JSX.Element;
2
+ //# sourceMappingURL=pages-list.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"pages-list.d.ts","sourceRoot":"","sources":["../../../src/components/pages-list.tsx"],"names":[],"mappings":"AA4CA,eAAO,MAAM,SAAS,+CA+FrB,CAAC"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@positronic/cli",
3
- "version": "0.0.21",
3
+ "version": "0.0.22",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -23,9 +23,9 @@
23
23
  "clean": "rm -rf tsconfig.tsbuildinfo dist node_modules"
24
24
  },
25
25
  "dependencies": {
26
- "@positronic/core": "^0.0.21",
27
- "@positronic/spec": "^0.0.21",
28
- "@positronic/template-new-project": "^0.0.21",
26
+ "@positronic/core": "^0.0.22",
27
+ "@positronic/spec": "^0.0.22",
28
+ "@positronic/template-new-project": "^0.0.22",
29
29
  "caz": "^2.0.0",
30
30
  "chokidar": "^3.6.0",
31
31
  "eventsource": "^3.0.6",