@walkeros/server-transformer-file 3.0.0-next-1773236214827 → 3.0.1
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/dev.d.mts +55 -0
- package/dist/dev.d.ts +55 -0
- package/dist/dev.js +1 -0
- package/dist/dev.js.map +1 -0
- package/dist/dev.mjs +1 -0
- package/dist/dev.mjs.map +1 -0
- package/dist/walkerOS.json +79 -0
- package/package.json +4 -4
package/dist/dev.d.mts
ADDED
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
import * as _walkeros_core_dev from '@walkeros/core/dev';
|
|
2
|
+
import { z } from '@walkeros/core/dev';
|
|
3
|
+
import { Flow, Transformer, Store } from '@walkeros/core';
|
|
4
|
+
|
|
5
|
+
/**
|
|
6
|
+
* File transformer settings schema.
|
|
7
|
+
*
|
|
8
|
+
* Mirrors: types.ts FileSettings
|
|
9
|
+
*/
|
|
10
|
+
declare const SettingsSchema: z.ZodObject<{
|
|
11
|
+
prefix: z.ZodOptional<z.ZodString>;
|
|
12
|
+
headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
13
|
+
mimeTypes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
14
|
+
}, z.core.$strip>;
|
|
15
|
+
type Settings = z.infer<typeof SettingsSchema>;
|
|
16
|
+
|
|
17
|
+
declare const settings: _walkeros_core_dev.JSONSchema;
|
|
18
|
+
|
|
19
|
+
type index$1_Settings = Settings;
|
|
20
|
+
declare const index$1_SettingsSchema: typeof SettingsSchema;
|
|
21
|
+
declare const index$1_settings: typeof settings;
|
|
22
|
+
declare namespace index$1 {
|
|
23
|
+
export { type index$1_Settings as Settings, index$1_SettingsSchema as SettingsSchema, index$1_settings as settings };
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
declare const serveStaticFile: Flow.StepExample;
|
|
27
|
+
|
|
28
|
+
declare const step_serveStaticFile: typeof serveStaticFile;
|
|
29
|
+
declare namespace step {
|
|
30
|
+
export { step_serveStaticFile as serveStaticFile };
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
interface FileEnv extends Transformer.BaseEnv {
|
|
34
|
+
/** Store providing file content. If not provided, transformer warns and passthroughs. */
|
|
35
|
+
store?: Store.Instance;
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
declare const init: FileEnv | undefined;
|
|
39
|
+
declare const push: FileEnv;
|
|
40
|
+
declare const simulation: string[];
|
|
41
|
+
|
|
42
|
+
declare const env_init: typeof init;
|
|
43
|
+
declare const env_push: typeof push;
|
|
44
|
+
declare const env_simulation: typeof simulation;
|
|
45
|
+
declare namespace env {
|
|
46
|
+
export { env_init as init, env_push as push, env_simulation as simulation };
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
declare const index_env: typeof env;
|
|
50
|
+
declare const index_step: typeof step;
|
|
51
|
+
declare namespace index {
|
|
52
|
+
export { index_env as env, index_step as step };
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
export { index as examples, index$1 as schemas };
|
package/dist/dev.d.ts
ADDED
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
import * as _walkeros_core_dev from '@walkeros/core/dev';
|
|
2
|
+
import { z } from '@walkeros/core/dev';
|
|
3
|
+
import { Flow, Transformer, Store } from '@walkeros/core';
|
|
4
|
+
|
|
5
|
+
/**
|
|
6
|
+
* File transformer settings schema.
|
|
7
|
+
*
|
|
8
|
+
* Mirrors: types.ts FileSettings
|
|
9
|
+
*/
|
|
10
|
+
declare const SettingsSchema: z.ZodObject<{
|
|
11
|
+
prefix: z.ZodOptional<z.ZodString>;
|
|
12
|
+
headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
13
|
+
mimeTypes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
14
|
+
}, z.core.$strip>;
|
|
15
|
+
type Settings = z.infer<typeof SettingsSchema>;
|
|
16
|
+
|
|
17
|
+
declare const settings: _walkeros_core_dev.JSONSchema;
|
|
18
|
+
|
|
19
|
+
type index$1_Settings = Settings;
|
|
20
|
+
declare const index$1_SettingsSchema: typeof SettingsSchema;
|
|
21
|
+
declare const index$1_settings: typeof settings;
|
|
22
|
+
declare namespace index$1 {
|
|
23
|
+
export { type index$1_Settings as Settings, index$1_SettingsSchema as SettingsSchema, index$1_settings as settings };
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
declare const serveStaticFile: Flow.StepExample;
|
|
27
|
+
|
|
28
|
+
declare const step_serveStaticFile: typeof serveStaticFile;
|
|
29
|
+
declare namespace step {
|
|
30
|
+
export { step_serveStaticFile as serveStaticFile };
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
interface FileEnv extends Transformer.BaseEnv {
|
|
34
|
+
/** Store providing file content. If not provided, transformer warns and passthroughs. */
|
|
35
|
+
store?: Store.Instance;
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
declare const init: FileEnv | undefined;
|
|
39
|
+
declare const push: FileEnv;
|
|
40
|
+
declare const simulation: string[];
|
|
41
|
+
|
|
42
|
+
declare const env_init: typeof init;
|
|
43
|
+
declare const env_push: typeof push;
|
|
44
|
+
declare const env_simulation: typeof simulation;
|
|
45
|
+
declare namespace env {
|
|
46
|
+
export { env_init as init, env_push as push, env_simulation as simulation };
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
declare const index_env: typeof env;
|
|
50
|
+
declare const index_step: typeof step;
|
|
51
|
+
declare namespace index {
|
|
52
|
+
export { index_env as env, index_step as step };
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
export { index as examples, index$1 as schemas };
|
package/dist/dev.js
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"use strict";var e,r=Object.defineProperty,t=Object.getOwnPropertyDescriptor,o=Object.getOwnPropertyNames,i=Object.prototype.hasOwnProperty,s=(e,t)=>{for(var o in t)r(e,o,{get:t[o],enumerable:!0})},a={};s(a,{examples:()=>g,schemas:()=>n}),module.exports=(e=a,((e,s,a,n)=>{if(s&&"object"==typeof s||"function"==typeof s)for(let p of o(s))i.call(e,p)||p===a||r(e,p,{get:()=>s[p],enumerable:!(n=t(s,p))||n.enumerable});return e})(r({},"__esModule",{value:!0}),e));var n={};s(n,{SettingsSchema:()=>l,settings:()=>d});var p=require("@walkeros/core/dev"),c=require("@walkeros/core/dev"),l=c.z.object({prefix:c.z.string().optional().describe('URL prefix to strip before store lookup. E.g., "/static" → /static/walker.js looks up "walker.js"'),headers:c.z.record(c.z.string(),c.z.string()).optional().describe("Default response headers (e.g., Cache-Control, X-Frame-Options)"),mimeTypes:c.z.record(c.z.string(),c.z.string()).optional().describe('Extension → Content-Type overrides. Keys include dot: { ".wasm": "application/wasm" }')}).describe("File transformer: serves static files via pluggable Store backend"),d=(0,p.zodToSchema)(l),g={};s(g,{env:()=>m,step:()=>u});var u={};s(u,{serveStaticFile:()=>v});var v={description:'Serve a static JavaScript file from store. Config: prefix: "/static", headers: { "Cache-Control": "public, max-age=3600" }',in:{name:"page view",data:{path:"/static/walker.js"},id:"1700000600-gr0up-1",trigger:"load",entity:"page",action:"view",timestamp:1700000600,group:"gr0up",count:1,version:{tagging:1},source:{type:"server",id:"",previous_id:""}},out:!1},m={};s(m,{init:()=>f,push:()=>b,simulation:()=>w});var f=void 0,b={store:void 0,respond:void 0},w=["call:respond"];//# sourceMappingURL=dev.js.map
|
package/dist/dev.js.map
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/dev.ts","../src/schemas/index.ts","../src/schemas/settings.ts","../src/examples/index.ts","../src/examples/step.ts","../src/examples/env.ts"],"sourcesContent":["export * as schemas from './schemas';\nexport * as examples from './examples';\n","import { zodToSchema } from '@walkeros/core/dev';\nimport { SettingsSchema } from './settings';\n\nexport { SettingsSchema, type Settings } from './settings';\nexport const settings = zodToSchema(SettingsSchema);\n","import { z } from '@walkeros/core/dev';\n\n/**\n * File transformer settings schema.\n *\n * Mirrors: types.ts FileSettings\n */\nexport const SettingsSchema = z\n .object({\n prefix: z\n .string()\n .optional()\n .describe(\n 'URL prefix to strip before store lookup. E.g., \"/static\" → /static/walker.js looks up \"walker.js\"',\n ),\n headers: z\n .record(z.string(), z.string())\n .optional()\n .describe(\n 'Default response headers (e.g., Cache-Control, X-Frame-Options)',\n ),\n mimeTypes: z\n .record(z.string(), z.string())\n .optional()\n .describe(\n 'Extension → Content-Type overrides. Keys include dot: { \".wasm\": \"application/wasm\" }',\n ),\n })\n .describe(\n 'File transformer: serves static files via pluggable Store backend',\n );\n\nexport type Settings = z.infer<typeof SettingsSchema>;\n","export * as step from './step';\nexport * as env from './env';\n","import type { Flow } from '@walkeros/core';\n\nexport const serveStaticFile: Flow.StepExample = {\n description:\n 'Serve a static JavaScript file from store. ' +\n 'Config: prefix: \"/static\", headers: { \"Cache-Control\": \"public, max-age=3600\" }',\n in: {\n name: 'page view',\n data: { path: '/static/walker.js' },\n id: '1700000600-gr0up-1',\n trigger: 'load',\n entity: 'page',\n action: 'view',\n timestamp: 1700000600,\n group: 'gr0up',\n count: 1,\n version: { tagging: 1 },\n source: { type: 'server', id: '', previous_id: '' },\n },\n out: false,\n};\n","import type { FileEnv } from '../types';\n\nexport const init: FileEnv | undefined = undefined;\n\nexport const push: FileEnv = {\n store: undefined,\n respond: undefined,\n};\n\nexport const simulation = ['call:respond'];\n"],"mappings":";;;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;;;ACAA;AAAA;AAAA;AAAA;AAAA;AAAA,IAAAA,cAA4B;;;ACA5B,iBAAkB;AAOX,IAAM,iBAAiB,aAC3B,OAAO;AAAA,EACN,QAAQ,aACL,OAAO,EACP,SAAS,EACT;AAAA,IACC;AAAA,EACF;AAAA,EACF,SAAS,aACN,OAAO,aAAE,OAAO,GAAG,aAAE,OAAO,CAAC,EAC7B,SAAS,EACT;AAAA,IACC;AAAA,EACF;AAAA,EACF,WAAW,aACR,OAAO,aAAE,OAAO,GAAG,aAAE,OAAO,CAAC,EAC7B,SAAS,EACT;AAAA,IACC;AAAA,EACF;AACJ,CAAC,EACA;AAAA,EACC;AACF;;;AD1BK,IAAM,eAAW,yBAAY,cAAc;;;AEJlD;AAAA;AAAA;AAAA;AAAA;;;ACAA;AAAA;AAAA;AAAA;AAEO,IAAM,kBAAoC;AAAA,EAC/C,aACE;AAAA,EAEF,IAAI;AAAA,IACF,MAAM;AAAA,IACN,MAAM,EAAE,MAAM,oBAAoB;AAAA,IAClC,IAAI;AAAA,IACJ,SAAS;AAAA,IACT,QAAQ;AAAA,IACR,QAAQ;AAAA,IACR,WAAW;AAAA,IACX,OAAO;AAAA,IACP,OAAO;AAAA,IACP,SAAS,EAAE,SAAS,EAAE;AAAA,IACtB,QAAQ,EAAE,MAAM,UAAU,IAAI,IAAI,aAAa,GAAG;AAAA,EACpD;AAAA,EACA,KAAK;AACP;;;ACpBA;AAAA;AAAA;AAAA;AAAA;AAAA;AAEO,IAAM,OAA4B;AAElC,IAAM,OAAgB;AAAA,EAC3B,OAAO;AAAA,EACP,SAAS;AACX;AAEO,IAAM,aAAa,CAAC,cAAc;","names":["import_dev"]}
|
package/dist/dev.mjs
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
var e=Object.defineProperty,r=(r,i)=>{for(var t in i)e(r,t,{get:i[t],enumerable:!0})},i={};r(i,{SettingsSchema:()=>a,settings:()=>o});import{zodToSchema as t}from"@walkeros/core/dev";import{z as s}from"@walkeros/core/dev";var a=s.object({prefix:s.string().optional().describe('URL prefix to strip before store lookup. E.g., "/static" → /static/walker.js looks up "walker.js"'),headers:s.record(s.string(),s.string()).optional().describe("Default response headers (e.g., Cache-Control, X-Frame-Options)"),mimeTypes:s.record(s.string(),s.string()).optional().describe('Extension → Content-Type overrides. Keys include dot: { ".wasm": "application/wasm" }')}).describe("File transformer: serves static files via pluggable Store backend"),o=t(a),n={};r(n,{env:()=>l,step:()=>p});var p={};r(p,{serveStaticFile:()=>c});var c={description:'Serve a static JavaScript file from store. Config: prefix: "/static", headers: { "Cache-Control": "public, max-age=3600" }',in:{name:"page view",data:{path:"/static/walker.js"},id:"1700000600-gr0up-1",trigger:"load",entity:"page",action:"view",timestamp:1700000600,group:"gr0up",count:1,version:{tagging:1},source:{type:"server",id:"",previous_id:""}},out:!1},l={};r(l,{init:()=>d,push:()=>g,simulation:()=>v});var d=void 0,g={store:void 0,respond:void 0},v=["call:respond"];export{n as examples,i as schemas};//# sourceMappingURL=dev.mjs.map
|
package/dist/dev.mjs.map
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/schemas/index.ts","../src/schemas/settings.ts","../src/examples/index.ts","../src/examples/step.ts","../src/examples/env.ts"],"sourcesContent":["import { zodToSchema } from '@walkeros/core/dev';\nimport { SettingsSchema } from './settings';\n\nexport { SettingsSchema, type Settings } from './settings';\nexport const settings = zodToSchema(SettingsSchema);\n","import { z } from '@walkeros/core/dev';\n\n/**\n * File transformer settings schema.\n *\n * Mirrors: types.ts FileSettings\n */\nexport const SettingsSchema = z\n .object({\n prefix: z\n .string()\n .optional()\n .describe(\n 'URL prefix to strip before store lookup. E.g., \"/static\" → /static/walker.js looks up \"walker.js\"',\n ),\n headers: z\n .record(z.string(), z.string())\n .optional()\n .describe(\n 'Default response headers (e.g., Cache-Control, X-Frame-Options)',\n ),\n mimeTypes: z\n .record(z.string(), z.string())\n .optional()\n .describe(\n 'Extension → Content-Type overrides. Keys include dot: { \".wasm\": \"application/wasm\" }',\n ),\n })\n .describe(\n 'File transformer: serves static files via pluggable Store backend',\n );\n\nexport type Settings = z.infer<typeof SettingsSchema>;\n","export * as step from './step';\nexport * as env from './env';\n","import type { Flow } from '@walkeros/core';\n\nexport const serveStaticFile: Flow.StepExample = {\n description:\n 'Serve a static JavaScript file from store. ' +\n 'Config: prefix: \"/static\", headers: { \"Cache-Control\": \"public, max-age=3600\" }',\n in: {\n name: 'page view',\n data: { path: '/static/walker.js' },\n id: '1700000600-gr0up-1',\n trigger: 'load',\n entity: 'page',\n action: 'view',\n timestamp: 1700000600,\n group: 'gr0up',\n count: 1,\n version: { tagging: 1 },\n source: { type: 'server', id: '', previous_id: '' },\n },\n out: false,\n};\n","import type { FileEnv } from '../types';\n\nexport const init: FileEnv | undefined = undefined;\n\nexport const push: FileEnv = {\n store: undefined,\n respond: undefined,\n};\n\nexport const simulation = ['call:respond'];\n"],"mappings":";;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,SAAS,mBAAmB;;;ACA5B,SAAS,SAAS;AAOX,IAAM,iBAAiB,EAC3B,OAAO;AAAA,EACN,QAAQ,EACL,OAAO,EACP,SAAS,EACT;AAAA,IACC;AAAA,EACF;AAAA,EACF,SAAS,EACN,OAAO,EAAE,OAAO,GAAG,EAAE,OAAO,CAAC,EAC7B,SAAS,EACT;AAAA,IACC;AAAA,EACF;AAAA,EACF,WAAW,EACR,OAAO,EAAE,OAAO,GAAG,EAAE,OAAO,CAAC,EAC7B,SAAS,EACT;AAAA,IACC;AAAA,EACF;AACJ,CAAC,EACA;AAAA,EACC;AACF;;;AD1BK,IAAM,WAAW,YAAY,cAAc;;;AEJlD;AAAA;AAAA;AAAA;AAAA;;;ACAA;AAAA;AAAA;AAAA;AAEO,IAAM,kBAAoC;AAAA,EAC/C,aACE;AAAA,EAEF,IAAI;AAAA,IACF,MAAM;AAAA,IACN,MAAM,EAAE,MAAM,oBAAoB;AAAA,IAClC,IAAI;AAAA,IACJ,SAAS;AAAA,IACT,QAAQ;AAAA,IACR,QAAQ;AAAA,IACR,WAAW;AAAA,IACX,OAAO;AAAA,IACP,OAAO;AAAA,IACP,SAAS,EAAE,SAAS,EAAE;AAAA,IACtB,QAAQ,EAAE,MAAM,UAAU,IAAI,IAAI,aAAa,GAAG;AAAA,EACpD;AAAA,EACA,KAAK;AACP;;;ACpBA;AAAA;AAAA;AAAA;AAAA;AAAA;AAEO,IAAM,OAA4B;AAElC,IAAM,OAAgB;AAAA,EAC3B,OAAO;AAAA,EACP,SAAS;AACX;AAEO,IAAM,aAAa,CAAC,cAAc;","names":[]}
|
|
@@ -0,0 +1,79 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$meta": {
|
|
3
|
+
"package": "@walkeros/server-transformer-file",
|
|
4
|
+
"version": "3.0.0",
|
|
5
|
+
"type": "transformer",
|
|
6
|
+
"platform": "server",
|
|
7
|
+
"docs": "https://www.walkeros.io/docs/transformers/file",
|
|
8
|
+
"source": "https://github.com/elbwalker/walkerOS/tree/main/packages/server/transformers/file/src"
|
|
9
|
+
},
|
|
10
|
+
"schemas": {
|
|
11
|
+
"settings": {
|
|
12
|
+
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
13
|
+
"type": "object",
|
|
14
|
+
"properties": {
|
|
15
|
+
"prefix": {
|
|
16
|
+
"description": "URL prefix to strip before store lookup. E.g., \"/static\" → /static/walker.js looks up \"walker.js\"",
|
|
17
|
+
"type": "string"
|
|
18
|
+
},
|
|
19
|
+
"headers": {
|
|
20
|
+
"description": "Default response headers (e.g., Cache-Control, X-Frame-Options)",
|
|
21
|
+
"type": "object",
|
|
22
|
+
"propertyNames": {
|
|
23
|
+
"type": "string"
|
|
24
|
+
},
|
|
25
|
+
"additionalProperties": {
|
|
26
|
+
"type": "string"
|
|
27
|
+
}
|
|
28
|
+
},
|
|
29
|
+
"mimeTypes": {
|
|
30
|
+
"description": "Extension → Content-Type overrides. Keys include dot: { \".wasm\": \"application/wasm\" }",
|
|
31
|
+
"type": "object",
|
|
32
|
+
"propertyNames": {
|
|
33
|
+
"type": "string"
|
|
34
|
+
},
|
|
35
|
+
"additionalProperties": {
|
|
36
|
+
"type": "string"
|
|
37
|
+
}
|
|
38
|
+
}
|
|
39
|
+
},
|
|
40
|
+
"additionalProperties": false,
|
|
41
|
+
"description": "File transformer: serves static files via pluggable Store backend"
|
|
42
|
+
}
|
|
43
|
+
},
|
|
44
|
+
"examples": {
|
|
45
|
+
"env": {
|
|
46
|
+
"push": {},
|
|
47
|
+
"simulation": [
|
|
48
|
+
"call:respond"
|
|
49
|
+
]
|
|
50
|
+
},
|
|
51
|
+
"step": {
|
|
52
|
+
"serveStaticFile": {
|
|
53
|
+
"description": "Serve a static JavaScript file from store. Config: prefix: \"/static\", headers: { \"Cache-Control\": \"public, max-age=3600\" }",
|
|
54
|
+
"in": {
|
|
55
|
+
"name": "page view",
|
|
56
|
+
"data": {
|
|
57
|
+
"path": "/static/walker.js"
|
|
58
|
+
},
|
|
59
|
+
"id": "1700000600-gr0up-1",
|
|
60
|
+
"trigger": "load",
|
|
61
|
+
"entity": "page",
|
|
62
|
+
"action": "view",
|
|
63
|
+
"timestamp": 1700000600,
|
|
64
|
+
"group": "gr0up",
|
|
65
|
+
"count": 1,
|
|
66
|
+
"version": {
|
|
67
|
+
"tagging": 1
|
|
68
|
+
},
|
|
69
|
+
"source": {
|
|
70
|
+
"type": "server",
|
|
71
|
+
"id": "",
|
|
72
|
+
"previous_id": ""
|
|
73
|
+
}
|
|
74
|
+
},
|
|
75
|
+
"out": false
|
|
76
|
+
}
|
|
77
|
+
}
|
|
78
|
+
}
|
|
79
|
+
}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@walkeros/server-transformer-file",
|
|
3
3
|
"description": "File serving transformer for walkerOS - serves static files via pluggable Store backend",
|
|
4
|
-
"version": "3.0.
|
|
4
|
+
"version": "3.0.1",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"main": "./dist/index.js",
|
|
7
7
|
"module": "./dist/index.mjs",
|
|
@@ -26,11 +26,11 @@
|
|
|
26
26
|
"update": "npx npm-check-updates -u && npm update"
|
|
27
27
|
},
|
|
28
28
|
"dependencies": {
|
|
29
|
-
"@walkeros/core": "3.0.
|
|
29
|
+
"@walkeros/core": "^3.0.1"
|
|
30
30
|
},
|
|
31
31
|
"devDependencies": {
|
|
32
|
-
"@walkeros/core": "3.0.
|
|
33
|
-
"@walkeros/store-memory": "3.0.
|
|
32
|
+
"@walkeros/core": "^3.0.1",
|
|
33
|
+
"@walkeros/store-memory": "^3.0.1"
|
|
34
34
|
},
|
|
35
35
|
"repository": {
|
|
36
36
|
"url": "git+https://github.com/elbwalker/walkerOS.git",
|