deskforge 1.0.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.
- package/.vscode/settings.json +3 -0
- package/README.md +547 -0
- package/examples/deskforge-app/App.ts +50 -0
- package/examples/deskforge-app/README.md +80 -0
- package/examples/deskforge-app/app.json +10 -0
- package/examples/deskforge-app/dist/App.d.ts +1 -0
- package/examples/deskforge-app/dist/App.js +100 -0
- package/examples/deskforge-app/dist/App.js.map +1 -0
- package/examples/deskforge-app/dist/deskforge-app-details.png +0 -0
- package/examples/deskforge-app/dist/deskforge-app-home.png +0 -0
- package/examples/deskforge-app/dist/examples/deskforge-app/App.d.ts +1 -0
- package/examples/deskforge-app/dist/examples/deskforge-app/App.js +74 -0
- package/examples/deskforge-app/dist/examples/deskforge-app/App.js.map +1 -0
- package/examples/deskforge-app/dist/examples/deskforge-app/src/screens/Details.d.ts +9 -0
- package/examples/deskforge-app/dist/examples/deskforge-app/src/screens/Details.js +14 -0
- package/examples/deskforge-app/dist/examples/deskforge-app/src/screens/Details.js.map +1 -0
- package/examples/deskforge-app/dist/examples/deskforge-app/src/screens/Home.d.ts +9 -0
- package/examples/deskforge-app/dist/examples/deskforge-app/src/screens/Home.js +13 -0
- package/examples/deskforge-app/dist/examples/deskforge-app/src/screens/Home.js.map +1 -0
- package/examples/deskforge-app/dist/examples/deskforge-app/src/screens/index.d.ts +2 -0
- package/examples/deskforge-app/dist/examples/deskforge-app/src/screens/index.js +13 -0
- package/examples/deskforge-app/dist/examples/deskforge-app/src/screens/index.js.map +1 -0
- package/examples/deskforge-app/dist/examples/deskforge-app/src/ui/Responsive.d.ts +38 -0
- package/examples/deskforge-app/dist/examples/deskforge-app/src/ui/Responsive.js +61 -0
- package/examples/deskforge-app/dist/examples/deskforge-app/src/ui/Responsive.js.map +1 -0
- package/examples/deskforge-app/dist/examples/deskforge-app/src/ui/index.d.ts +1 -0
- package/examples/deskforge-app/dist/examples/deskforge-app/src/ui/index.js +18 -0
- package/examples/deskforge-app/dist/examples/deskforge-app/src/ui/index.js.map +1 -0
- package/examples/deskforge-app/dist/packages/core/src/animation/easing.d.ts +22 -0
- package/examples/deskforge-app/dist/packages/core/src/animation/easing.js +91 -0
- package/examples/deskforge-app/dist/packages/core/src/animation/easing.js.map +1 -0
- package/examples/deskforge-app/dist/packages/core/src/animation/index.d.ts +3 -0
- package/examples/deskforge-app/dist/packages/core/src/animation/index.js +26 -0
- package/examples/deskforge-app/dist/packages/core/src/animation/index.js.map +1 -0
- package/examples/deskforge-app/dist/packages/core/src/animation/interpolate.d.ts +6 -0
- package/examples/deskforge-app/dist/packages/core/src/animation/interpolate.js +83 -0
- package/examples/deskforge-app/dist/packages/core/src/animation/interpolate.js.map +1 -0
- package/examples/deskforge-app/dist/packages/core/src/animation/spring.d.ts +20 -0
- package/examples/deskforge-app/dist/packages/core/src/animation/spring.js +79 -0
- package/examples/deskforge-app/dist/packages/core/src/animation/spring.js.map +1 -0
- package/examples/deskforge-app/dist/packages/core/src/component/component.d.ts +5 -0
- package/examples/deskforge-app/dist/packages/core/src/component/component.js +14 -0
- package/examples/deskforge-app/dist/packages/core/src/component/component.js.map +1 -0
- package/examples/deskforge-app/dist/packages/core/src/component/index.d.ts +1 -0
- package/examples/deskforge-app/dist/packages/core/src/component/index.js +18 -0
- package/examples/deskforge-app/dist/packages/core/src/component/index.js.map +1 -0
- package/examples/deskforge-app/dist/packages/core/src/index.d.ts +5 -0
- package/examples/deskforge-app/dist/packages/core/src/index.js +30 -0
- package/examples/deskforge-app/dist/packages/core/src/index.js.map +1 -0
- package/examples/deskforge-app/dist/packages/core/src/scheduler/index.d.ts +1 -0
- package/examples/deskforge-app/dist/packages/core/src/scheduler/index.js +20 -0
- package/examples/deskforge-app/dist/packages/core/src/scheduler/index.js.map +1 -0
- package/examples/deskforge-app/dist/packages/core/src/scheduler/scheduler.d.ts +11 -0
- package/examples/deskforge-app/dist/packages/core/src/scheduler/scheduler.js +61 -0
- package/examples/deskforge-app/dist/packages/core/src/scheduler/scheduler.js.map +1 -0
- package/examples/deskforge-app/dist/packages/core/src/tree/diff.d.ts +16 -0
- package/examples/deskforge-app/dist/packages/core/src/tree/diff.js +67 -0
- package/examples/deskforge-app/dist/packages/core/src/tree/diff.js.map +1 -0
- package/examples/deskforge-app/dist/packages/core/src/tree/index.d.ts +3 -0
- package/examples/deskforge-app/dist/packages/core/src/tree/index.js +23 -0
- package/examples/deskforge-app/dist/packages/core/src/tree/index.js.map +1 -0
- package/examples/deskforge-app/dist/packages/core/src/tree/node.d.ts +12 -0
- package/examples/deskforge-app/dist/packages/core/src/tree/node.js +59 -0
- package/examples/deskforge-app/dist/packages/core/src/tree/node.js.map +1 -0
- package/examples/deskforge-app/dist/packages/core/src/tree/tree.d.ts +10 -0
- package/examples/deskforge-app/dist/packages/core/src/tree/tree.js +43 -0
- package/examples/deskforge-app/dist/packages/core/src/tree/tree.js.map +1 -0
- package/examples/deskforge-app/dist/packages/renderer/src/canvas.d.ts +23 -0
- package/examples/deskforge-app/dist/packages/renderer/src/canvas.js +38 -0
- package/examples/deskforge-app/dist/packages/renderer/src/canvas.js.map +1 -0
- package/examples/deskforge-app/dist/packages/renderer/src/context.d.ts +33 -0
- package/examples/deskforge-app/dist/packages/renderer/src/context.js +45 -0
- package/examples/deskforge-app/dist/packages/renderer/src/context.js.map +1 -0
- package/examples/deskforge-app/dist/packages/renderer/src/dirty-region.d.ts +42 -0
- package/examples/deskforge-app/dist/packages/renderer/src/dirty-region.js +106 -0
- package/examples/deskforge-app/dist/packages/renderer/src/dirty-region.js.map +1 -0
- package/examples/deskforge-app/dist/packages/renderer/src/engine.d.ts +56 -0
- package/examples/deskforge-app/dist/packages/renderer/src/engine.js +95 -0
- package/examples/deskforge-app/dist/packages/renderer/src/engine.js.map +1 -0
- package/examples/deskforge-app/dist/packages/renderer/src/filters.d.ts +22 -0
- package/examples/deskforge-app/dist/packages/renderer/src/filters.js +41 -0
- package/examples/deskforge-app/dist/packages/renderer/src/filters.js.map +1 -0
- package/examples/deskforge-app/dist/packages/renderer/src/index.d.ts +15 -0
- package/examples/deskforge-app/dist/packages/renderer/src/index.js +34 -0
- package/examples/deskforge-app/dist/packages/renderer/src/index.js.map +1 -0
- package/examples/deskforge-app/dist/packages/renderer/src/painter.d.ts +26 -0
- package/examples/deskforge-app/dist/packages/renderer/src/painter.js +127 -0
- package/examples/deskforge-app/dist/packages/renderer/src/painter.js.map +1 -0
- package/examples/deskforge-app/dist/packages/renderer/src/renderer.d.ts +71 -0
- package/examples/deskforge-app/dist/packages/renderer/src/renderer.js +120 -0
- package/examples/deskforge-app/dist/packages/renderer/src/renderer.js.map +1 -0
- package/examples/deskforge-app/dist/packages/renderer/src/svg-export.d.ts +47 -0
- package/examples/deskforge-app/dist/packages/renderer/src/svg-export.js +125 -0
- package/examples/deskforge-app/dist/packages/renderer/src/svg-export.js.map +1 -0
- package/examples/deskforge-app/dist/packages/router/src/app.d.ts +9 -0
- package/examples/deskforge-app/dist/packages/router/src/app.js +12 -0
- package/examples/deskforge-app/dist/packages/router/src/app.js.map +1 -0
- package/examples/deskforge-app/dist/packages/router/src/file-router.d.ts +35 -0
- package/examples/deskforge-app/dist/packages/router/src/file-router.js +145 -0
- package/examples/deskforge-app/dist/packages/router/src/file-router.js.map +1 -0
- package/examples/deskforge-app/dist/packages/router/src/index.d.ts +5 -0
- package/examples/deskforge-app/dist/packages/router/src/index.js +24 -0
- package/examples/deskforge-app/dist/packages/router/src/index.js.map +1 -0
- package/examples/deskforge-app/dist/packages/router/src/manifest.d.ts +9 -0
- package/examples/deskforge-app/dist/packages/router/src/manifest.js +26 -0
- package/examples/deskforge-app/dist/packages/router/src/manifest.js.map +1 -0
- package/examples/deskforge-app/dist/packages/router/src/router.d.ts +30 -0
- package/examples/deskforge-app/dist/packages/router/src/router.js +112 -0
- package/examples/deskforge-app/dist/packages/router/src/router.js.map +1 -0
- package/examples/deskforge-app/dist/packages/router/src/screen.d.ts +30 -0
- package/examples/deskforge-app/dist/packages/router/src/screen.js +34 -0
- package/examples/deskforge-app/dist/packages/router/src/screen.js.map +1 -0
- package/examples/deskforge-app/dist/src/screens/Details.d.ts +9 -0
- package/examples/deskforge-app/dist/src/screens/Details.js +62 -0
- package/examples/deskforge-app/dist/src/screens/Details.js.map +1 -0
- package/examples/deskforge-app/dist/src/screens/Home.d.ts +9 -0
- package/examples/deskforge-app/dist/src/screens/Home.js +68 -0
- package/examples/deskforge-app/dist/src/screens/Home.js.map +1 -0
- package/examples/deskforge-app/dist/src/screens/index.d.ts +2 -0
- package/examples/deskforge-app/dist/src/screens/index.js +11 -0
- package/examples/deskforge-app/dist/src/screens/index.js.map +1 -0
- package/examples/deskforge-app/node_modules/@types/node/LICENSE +21 -0
- package/examples/deskforge-app/node_modules/@types/node/README.md +15 -0
- package/examples/deskforge-app/node_modules/@types/node/assert/strict.d.ts +8 -0
- package/examples/deskforge-app/node_modules/@types/node/assert.d.ts +1062 -0
- package/examples/deskforge-app/node_modules/@types/node/async_hooks.d.ts +605 -0
- package/examples/deskforge-app/node_modules/@types/node/buffer.buffer.d.ts +471 -0
- package/examples/deskforge-app/node_modules/@types/node/buffer.d.ts +1936 -0
- package/examples/deskforge-app/node_modules/@types/node/child_process.d.ts +1475 -0
- package/examples/deskforge-app/node_modules/@types/node/cluster.d.ts +577 -0
- package/examples/deskforge-app/node_modules/@types/node/compatibility/disposable.d.ts +16 -0
- package/examples/deskforge-app/node_modules/@types/node/compatibility/index.d.ts +9 -0
- package/examples/deskforge-app/node_modules/@types/node/compatibility/indexable.d.ts +20 -0
- package/examples/deskforge-app/node_modules/@types/node/compatibility/iterators.d.ts +21 -0
- package/examples/deskforge-app/node_modules/@types/node/console.d.ts +452 -0
- package/examples/deskforge-app/node_modules/@types/node/constants.d.ts +21 -0
- package/examples/deskforge-app/node_modules/@types/node/crypto.d.ts +4590 -0
- package/examples/deskforge-app/node_modules/@types/node/dgram.d.ts +597 -0
- package/examples/deskforge-app/node_modules/@types/node/diagnostics_channel.d.ts +578 -0
- package/examples/deskforge-app/node_modules/@types/node/dns/promises.d.ts +479 -0
- package/examples/deskforge-app/node_modules/@types/node/dns.d.ts +871 -0
- package/examples/deskforge-app/node_modules/@types/node/domain.d.ts +170 -0
- package/examples/deskforge-app/node_modules/@types/node/events.d.ts +977 -0
- package/examples/deskforge-app/node_modules/@types/node/fs/promises.d.ts +1270 -0
- package/examples/deskforge-app/node_modules/@types/node/fs.d.ts +4375 -0
- package/examples/deskforge-app/node_modules/@types/node/globals.d.ts +172 -0
- package/examples/deskforge-app/node_modules/@types/node/globals.typedarray.d.ts +38 -0
- package/examples/deskforge-app/node_modules/@types/node/http.d.ts +2049 -0
- package/examples/deskforge-app/node_modules/@types/node/http2.d.ts +2712 -0
- package/examples/deskforge-app/node_modules/@types/node/https.d.ts +578 -0
- package/examples/deskforge-app/node_modules/@types/node/index.d.ts +93 -0
- package/examples/deskforge-app/node_modules/@types/node/inspector.generated.d.ts +3966 -0
- package/examples/deskforge-app/node_modules/@types/node/module.d.ts +539 -0
- package/examples/deskforge-app/node_modules/@types/node/net.d.ts +1031 -0
- package/examples/deskforge-app/node_modules/@types/node/os.d.ts +506 -0
- package/examples/deskforge-app/node_modules/@types/node/package.json +140 -0
- package/examples/deskforge-app/node_modules/@types/node/path.d.ts +200 -0
- package/examples/deskforge-app/node_modules/@types/node/perf_hooks.d.ts +961 -0
- package/examples/deskforge-app/node_modules/@types/node/process.d.ts +1961 -0
- package/examples/deskforge-app/node_modules/@types/node/punycode.d.ts +117 -0
- package/examples/deskforge-app/node_modules/@types/node/querystring.d.ts +152 -0
- package/examples/deskforge-app/node_modules/@types/node/readline/promises.d.ts +162 -0
- package/examples/deskforge-app/node_modules/@types/node/readline.d.ts +589 -0
- package/examples/deskforge-app/node_modules/@types/node/repl.d.ts +430 -0
- package/examples/deskforge-app/node_modules/@types/node/sea.d.ts +153 -0
- package/examples/deskforge-app/node_modules/@types/node/stream/consumers.d.ts +38 -0
- package/examples/deskforge-app/node_modules/@types/node/stream/promises.d.ts +90 -0
- package/examples/deskforge-app/node_modules/@types/node/stream/web.d.ts +533 -0
- package/examples/deskforge-app/node_modules/@types/node/stream.d.ts +1698 -0
- package/examples/deskforge-app/node_modules/@types/node/string_decoder.d.ts +67 -0
- package/examples/deskforge-app/node_modules/@types/node/test.d.ts +1787 -0
- package/examples/deskforge-app/node_modules/@types/node/timers/promises.d.ts +108 -0
- package/examples/deskforge-app/node_modules/@types/node/timers.d.ts +286 -0
- package/examples/deskforge-app/node_modules/@types/node/tls.d.ts +1259 -0
- package/examples/deskforge-app/node_modules/@types/node/trace_events.d.ts +197 -0
- package/examples/deskforge-app/node_modules/@types/node/ts5.6/buffer.buffer.d.ts +468 -0
- package/examples/deskforge-app/node_modules/@types/node/ts5.6/globals.typedarray.d.ts +34 -0
- package/examples/deskforge-app/node_modules/@types/node/ts5.6/index.d.ts +93 -0
- package/examples/deskforge-app/node_modules/@types/node/tty.d.ts +208 -0
- package/examples/deskforge-app/node_modules/@types/node/url.d.ts +964 -0
- package/examples/deskforge-app/node_modules/@types/node/util.d.ts +2331 -0
- package/examples/deskforge-app/node_modules/@types/node/v8.d.ts +809 -0
- package/examples/deskforge-app/node_modules/@types/node/vm.d.ts +1001 -0
- package/examples/deskforge-app/node_modules/@types/node/wasi.d.ts +181 -0
- package/examples/deskforge-app/node_modules/@types/node/web-globals/abortcontroller.d.ts +34 -0
- package/examples/deskforge-app/node_modules/@types/node/web-globals/domexception.d.ts +68 -0
- package/examples/deskforge-app/node_modules/@types/node/web-globals/events.d.ts +97 -0
- package/examples/deskforge-app/node_modules/@types/node/web-globals/fetch.d.ts +55 -0
- package/examples/deskforge-app/node_modules/@types/node/worker_threads.d.ts +715 -0
- package/examples/deskforge-app/node_modules/@types/node/zlib.d.ts +598 -0
- package/examples/deskforge-app/node_modules/undici-types/LICENSE +21 -0
- package/examples/deskforge-app/node_modules/undici-types/README.md +6 -0
- package/examples/deskforge-app/node_modules/undici-types/agent.d.ts +31 -0
- package/examples/deskforge-app/node_modules/undici-types/api.d.ts +43 -0
- package/examples/deskforge-app/node_modules/undici-types/balanced-pool.d.ts +29 -0
- package/examples/deskforge-app/node_modules/undici-types/cache.d.ts +36 -0
- package/examples/deskforge-app/node_modules/undici-types/client.d.ts +108 -0
- package/examples/deskforge-app/node_modules/undici-types/connector.d.ts +34 -0
- package/examples/deskforge-app/node_modules/undici-types/content-type.d.ts +21 -0
- package/examples/deskforge-app/node_modules/undici-types/cookies.d.ts +28 -0
- package/examples/deskforge-app/node_modules/undici-types/diagnostics-channel.d.ts +66 -0
- package/examples/deskforge-app/node_modules/undici-types/dispatcher.d.ts +256 -0
- package/examples/deskforge-app/node_modules/undici-types/env-http-proxy-agent.d.ts +21 -0
- package/examples/deskforge-app/node_modules/undici-types/errors.d.ts +149 -0
- package/examples/deskforge-app/node_modules/undici-types/eventsource.d.ts +61 -0
- package/examples/deskforge-app/node_modules/undici-types/fetch.d.ts +209 -0
- package/examples/deskforge-app/node_modules/undici-types/file.d.ts +39 -0
- package/examples/deskforge-app/node_modules/undici-types/filereader.d.ts +54 -0
- package/examples/deskforge-app/node_modules/undici-types/formdata.d.ts +108 -0
- package/examples/deskforge-app/node_modules/undici-types/global-dispatcher.d.ts +9 -0
- package/examples/deskforge-app/node_modules/undici-types/global-origin.d.ts +7 -0
- package/examples/deskforge-app/node_modules/undici-types/handlers.d.ts +15 -0
- package/examples/deskforge-app/node_modules/undici-types/header.d.ts +4 -0
- package/examples/deskforge-app/node_modules/undici-types/index.d.ts +71 -0
- package/examples/deskforge-app/node_modules/undici-types/interceptors.d.ts +17 -0
- package/examples/deskforge-app/node_modules/undici-types/mock-agent.d.ts +50 -0
- package/examples/deskforge-app/node_modules/undici-types/mock-client.d.ts +25 -0
- package/examples/deskforge-app/node_modules/undici-types/mock-errors.d.ts +12 -0
- package/examples/deskforge-app/node_modules/undici-types/mock-interceptor.d.ts +93 -0
- package/examples/deskforge-app/node_modules/undici-types/mock-pool.d.ts +25 -0
- package/examples/deskforge-app/node_modules/undici-types/package.json +55 -0
- package/examples/deskforge-app/node_modules/undici-types/patch.d.ts +33 -0
- package/examples/deskforge-app/node_modules/undici-types/pool-stats.d.ts +19 -0
- package/examples/deskforge-app/node_modules/undici-types/pool.d.ts +39 -0
- package/examples/deskforge-app/node_modules/undici-types/proxy-agent.d.ts +28 -0
- package/examples/deskforge-app/node_modules/undici-types/readable.d.ts +65 -0
- package/examples/deskforge-app/node_modules/undici-types/retry-agent.d.ts +8 -0
- package/examples/deskforge-app/node_modules/undici-types/retry-handler.d.ts +116 -0
- package/examples/deskforge-app/node_modules/undici-types/util.d.ts +18 -0
- package/examples/deskforge-app/node_modules/undici-types/webidl.d.ts +228 -0
- package/examples/deskforge-app/node_modules/undici-types/websocket.d.ts +150 -0
- package/examples/deskforge-app/package.json +19 -0
- package/examples/deskforge-app/src/screens/Details.ts +20 -0
- package/examples/deskforge-app/src/screens/Home.ts +19 -0
- package/examples/deskforge-app/src/screens/index.ts +2 -0
- package/examples/deskforge-app/src/ui/Responsive.ts +88 -0
- package/examples/deskforge-app/src/ui/index.ts +1 -0
- package/examples/deskforge-app/tsconfig.json +24 -0
- package/examples/notekeeper/dist/app.d.ts +1 -0
- package/examples/notekeeper/dist/app.js +96 -0
- package/examples/notekeeper/dist/app.js.map +1 -0
- package/examples/notekeeper/dist/components/noteCard.d.ts +1 -0
- package/examples/notekeeper/dist/components/noteCard.js +124 -0
- package/examples/notekeeper/dist/components/noteCard.js.map +1 -0
- package/examples/notekeeper/dist/hooks/useNotes.d.ts +14 -0
- package/examples/notekeeper/dist/hooks/useNotes.js +127 -0
- package/examples/notekeeper/dist/hooks/useNotes.js.map +1 -0
- package/examples/notekeeper/dist/notekeeper.png +0 -0
- package/examples/notekeeper/dist/state/appState.d.ts +11 -0
- package/examples/notekeeper/dist/state/appState.js +125 -0
- package/examples/notekeeper/dist/state/appState.js.map +1 -0
- package/examples/notekeeper/package.json +19 -0
- package/examples/notekeeper/src/README.md +10 -0
- package/examples/notekeeper/src/app.ts +98 -0
- package/examples/notekeeper/src/components/noteCard.ts +147 -0
- package/examples/notekeeper/src/hooks/useNotes.ts +169 -0
- package/examples/notekeeper/src/state/appState.ts +142 -0
- package/examples/notekeeper/tsconfig.json +16 -0
- package/examples/tsconfig.json +34 -0
- package/local-app/addlibrary.ts +7 -0
- package/local-app/app.ts +29 -0
- package/local-app/package.json +13 -0
- package/local-app/screens/Home.ts +20 -0
- package/local-app/tsconfig.json +8 -0
- package/package.json +30 -0
- package/packages/ai/dist/brain.d.ts +32 -0
- package/packages/ai/dist/brain.d.ts.map +1 -0
- package/packages/ai/dist/brain.js +94 -0
- package/packages/ai/dist/brain.js.map +1 -0
- package/packages/ai/dist/index.d.ts +5 -0
- package/packages/ai/dist/index.d.ts.map +1 -0
- package/packages/ai/dist/index.js +27 -0
- package/packages/ai/dist/index.js.map +1 -0
- package/packages/ai/dist/nodes/logic.d.ts +23 -0
- package/packages/ai/dist/nodes/logic.d.ts.map +1 -0
- package/packages/ai/dist/nodes/logic.js +55 -0
- package/packages/ai/dist/nodes/logic.js.map +1 -0
- package/packages/ai/dist/nodes/memory.d.ts +28 -0
- package/packages/ai/dist/nodes/memory.d.ts.map +1 -0
- package/packages/ai/dist/nodes/memory.js +93 -0
- package/packages/ai/dist/nodes/memory.js.map +1 -0
- package/packages/ai/dist/nodes/perception.d.ts +21 -0
- package/packages/ai/dist/nodes/perception.d.ts.map +1 -0
- package/packages/ai/dist/nodes/perception.js +28 -0
- package/packages/ai/dist/nodes/perception.js.map +1 -0
- package/packages/ai/package.json +30 -0
- package/packages/ai/src/brain.ts +209 -0
- package/packages/ai/src/index.ts +14 -0
- package/packages/ai/src/nodes/logic.ts +109 -0
- package/packages/ai/src/nodes/memory.ts +172 -0
- package/packages/ai/src/nodes/perception.ts +90 -0
- package/packages/ai/tsconfig.json +17 -0
- package/packages/background/dist/background.d.ts +42 -0
- package/packages/background/dist/background.d.ts.map +1 -0
- package/packages/background/dist/background.js +149 -0
- package/packages/background/dist/background.js.map +1 -0
- package/packages/background/dist/index.d.ts +2 -0
- package/packages/background/dist/index.d.ts.map +1 -0
- package/packages/background/dist/index.js +20 -0
- package/packages/background/dist/index.js.map +1 -0
- package/packages/background/package.json +30 -0
- package/packages/background/src/background.ts +263 -0
- package/packages/background/src/index.ts +4 -0
- package/packages/background/tsconfig.json +17 -0
- package/packages/bridge/dist/bridge.d.ts +22 -0
- package/packages/bridge/dist/bridge.d.ts.map +1 -0
- package/packages/bridge/dist/bridge.js +44 -0
- package/packages/bridge/dist/bridge.js.map +1 -0
- package/packages/bridge/dist/c.d.ts +10 -0
- package/packages/bridge/dist/c.d.ts.map +1 -0
- package/packages/bridge/dist/c.js +23 -0
- package/packages/bridge/dist/c.js.map +1 -0
- package/packages/bridge/dist/dotnet.d.ts +11 -0
- package/packages/bridge/dist/dotnet.d.ts.map +1 -0
- package/packages/bridge/dist/dotnet.js +26 -0
- package/packages/bridge/dist/dotnet.js.map +1 -0
- package/packages/bridge/dist/go.d.ts +10 -0
- package/packages/bridge/dist/go.d.ts.map +1 -0
- package/packages/bridge/dist/go.js +27 -0
- package/packages/bridge/dist/go.js.map +1 -0
- package/packages/bridge/dist/http.d.ts +22 -0
- package/packages/bridge/dist/http.d.ts.map +1 -0
- package/packages/bridge/dist/http.js +110 -0
- package/packages/bridge/dist/http.js.map +1 -0
- package/packages/bridge/dist/index.d.ts +5 -0
- package/packages/bridge/dist/index.d.ts.map +1 -0
- package/packages/bridge/dist/index.js +27 -0
- package/packages/bridge/dist/index.js.map +1 -0
- package/packages/bridge/dist/kotlin.d.ts +11 -0
- package/packages/bridge/dist/kotlin.d.ts.map +1 -0
- package/packages/bridge/dist/kotlin.js +25 -0
- package/packages/bridge/dist/kotlin.js.map +1 -0
- package/packages/bridge/dist/php.d.ts +11 -0
- package/packages/bridge/dist/php.d.ts.map +1 -0
- package/packages/bridge/dist/php.js +28 -0
- package/packages/bridge/dist/php.js.map +1 -0
- package/packages/bridge/dist/process.d.ts +27 -0
- package/packages/bridge/dist/process.d.ts.map +1 -0
- package/packages/bridge/dist/process.js +101 -0
- package/packages/bridge/dist/process.js.map +1 -0
- package/packages/bridge/dist/python.d.ts +15 -0
- package/packages/bridge/dist/python.d.ts.map +1 -0
- package/packages/bridge/dist/python.js +34 -0
- package/packages/bridge/dist/python.js.map +1 -0
- package/packages/bridge/dist/rust.d.ts +10 -0
- package/packages/bridge/dist/rust.d.ts.map +1 -0
- package/packages/bridge/dist/rust.js +24 -0
- package/packages/bridge/dist/rust.js.map +1 -0
- package/packages/bridge/dist/swift.d.ts +11 -0
- package/packages/bridge/dist/swift.d.ts.map +1 -0
- package/packages/bridge/dist/swift.js +26 -0
- package/packages/bridge/dist/swift.js.map +1 -0
- package/packages/bridge/package.json +30 -0
- package/packages/bridge/src/bridge.ts +38 -0
- package/packages/bridge/src/c.ts +41 -0
- package/packages/bridge/src/dotnet.ts +50 -0
- package/packages/bridge/src/go.ts +48 -0
- package/packages/bridge/src/http.ts +198 -0
- package/packages/bridge/src/index.ts +14 -0
- package/packages/bridge/src/kotlin.ts +48 -0
- package/packages/bridge/src/php.ts +59 -0
- package/packages/bridge/src/process.ts +174 -0
- package/packages/bridge/src/python.ts +69 -0
- package/packages/bridge/src/rust.ts +43 -0
- package/packages/bridge/src/swift.ts +50 -0
- package/packages/bridge/tsconfig.json +18 -0
- package/packages/cli/dist/commands/build.d.ts +17 -0
- package/packages/cli/dist/commands/build.d.ts.map +1 -0
- package/packages/cli/dist/commands/build.js +79 -0
- package/packages/cli/dist/commands/build.js.map +1 -0
- package/packages/cli/dist/commands/create.d.ts +11 -0
- package/packages/cli/dist/commands/create.d.ts.map +1 -0
- package/packages/cli/dist/commands/create.js +287 -0
- package/packages/cli/dist/commands/create.js.map +1 -0
- package/packages/cli/dist/commands/lib/add.d.ts +3 -0
- package/packages/cli/dist/commands/lib/add.d.ts.map +1 -0
- package/packages/cli/dist/commands/lib/add.js +39 -0
- package/packages/cli/dist/commands/lib/add.js.map +1 -0
- package/packages/cli/dist/commands/lib/list.d.ts +3 -0
- package/packages/cli/dist/commands/lib/list.d.ts.map +1 -0
- package/packages/cli/dist/commands/lib/list.js +29 -0
- package/packages/cli/dist/commands/lib/list.js.map +1 -0
- package/packages/cli/dist/commands/lib/remove.d.ts +3 -0
- package/packages/cli/dist/commands/lib/remove.d.ts.map +1 -0
- package/packages/cli/dist/commands/lib/remove.js +30 -0
- package/packages/cli/dist/commands/lib/remove.js.map +1 -0
- package/packages/cli/dist/commands/lib/restore.d.ts +3 -0
- package/packages/cli/dist/commands/lib/restore.d.ts.map +1 -0
- package/packages/cli/dist/commands/lib/restore.js +49 -0
- package/packages/cli/dist/commands/lib/restore.js.map +1 -0
- package/packages/cli/dist/commands/lib/search.d.ts +3 -0
- package/packages/cli/dist/commands/lib/search.d.ts.map +1 -0
- package/packages/cli/dist/commands/lib/search.js +30 -0
- package/packages/cli/dist/commands/lib/search.js.map +1 -0
- package/packages/cli/dist/commands/start.d.ts +10 -0
- package/packages/cli/dist/commands/start.d.ts.map +1 -0
- package/packages/cli/dist/commands/start.js +88 -0
- package/packages/cli/dist/commands/start.js.map +1 -0
- package/packages/cli/dist/index.d.ts +3 -0
- package/packages/cli/dist/index.d.ts.map +1 -0
- package/packages/cli/dist/index.js +193 -0
- package/packages/cli/dist/index.js.map +1 -0
- package/packages/cli/dist/registry/client.d.ts +24 -0
- package/packages/cli/dist/registry/client.d.ts.map +1 -0
- package/packages/cli/dist/registry/client.js +73 -0
- package/packages/cli/dist/registry/client.js.map +1 -0
- package/packages/cli/dist/registry/installer.d.ts +16 -0
- package/packages/cli/dist/registry/installer.d.ts.map +1 -0
- package/packages/cli/dist/registry/installer.js +135 -0
- package/packages/cli/dist/registry/installer.js.map +1 -0
- package/packages/cli/dist/registry/manifest.d.ts +13 -0
- package/packages/cli/dist/registry/manifest.d.ts.map +1 -0
- package/packages/cli/dist/registry/manifest.js +100 -0
- package/packages/cli/dist/registry/manifest.js.map +1 -0
- package/packages/cli/package.json +36 -0
- package/packages/cli/src/commands/build.ts +138 -0
- package/packages/cli/src/commands/create.ts +363 -0
- package/packages/cli/src/commands/lib/add.ts +56 -0
- package/packages/cli/src/commands/lib/list.ts +42 -0
- package/packages/cli/src/commands/lib/remove.ts +39 -0
- package/packages/cli/src/commands/lib/restore.ts +65 -0
- package/packages/cli/src/commands/lib/search.ts +45 -0
- package/packages/cli/src/commands/start.ts +117 -0
- package/packages/cli/src/index.ts +224 -0
- package/packages/cli/src/registry/client.ts +153 -0
- package/packages/cli/src/registry/installer.ts +197 -0
- package/packages/cli/src/registry/manifest.ts +145 -0
- package/packages/cli/test/create.test.js +22 -0
- package/packages/cli/tsconfig.json +18 -0
- package/packages/core/dist/animation/easing.d.ts +23 -0
- package/packages/core/dist/animation/easing.d.ts.map +1 -0
- package/packages/core/dist/animation/easing.js +91 -0
- package/packages/core/dist/animation/easing.js.map +1 -0
- package/packages/core/dist/animation/index.d.ts +4 -0
- package/packages/core/dist/animation/index.d.ts.map +1 -0
- package/packages/core/dist/animation/index.js +26 -0
- package/packages/core/dist/animation/index.js.map +1 -0
- package/packages/core/dist/animation/interpolate.d.ts +7 -0
- package/packages/core/dist/animation/interpolate.d.ts.map +1 -0
- package/packages/core/dist/animation/interpolate.js +83 -0
- package/packages/core/dist/animation/interpolate.js.map +1 -0
- package/packages/core/dist/animation/spring.d.ts +21 -0
- package/packages/core/dist/animation/spring.d.ts.map +1 -0
- package/packages/core/dist/animation/spring.js +79 -0
- package/packages/core/dist/animation/spring.js.map +1 -0
- package/packages/core/dist/component/component.d.ts +6 -0
- package/packages/core/dist/component/component.d.ts.map +1 -0
- package/packages/core/dist/component/component.js +14 -0
- package/packages/core/dist/component/component.js.map +1 -0
- package/packages/core/dist/component/index.d.ts +2 -0
- package/packages/core/dist/component/index.d.ts.map +1 -0
- package/packages/core/dist/component/index.js +18 -0
- package/packages/core/dist/component/index.js.map +1 -0
- package/packages/core/dist/index.d.ts +6 -0
- package/packages/core/dist/index.d.ts.map +1 -0
- package/packages/core/dist/index.js +30 -0
- package/packages/core/dist/index.js.map +1 -0
- package/packages/core/dist/scheduler/index.d.ts +2 -0
- package/packages/core/dist/scheduler/index.d.ts.map +1 -0
- package/packages/core/dist/scheduler/index.js +20 -0
- package/packages/core/dist/scheduler/index.js.map +1 -0
- package/packages/core/dist/scheduler/scheduler.d.ts +12 -0
- package/packages/core/dist/scheduler/scheduler.d.ts.map +1 -0
- package/packages/core/dist/scheduler/scheduler.js +61 -0
- package/packages/core/dist/scheduler/scheduler.js.map +1 -0
- package/packages/core/dist/tree/diff.d.ts +17 -0
- package/packages/core/dist/tree/diff.d.ts.map +1 -0
- package/packages/core/dist/tree/diff.js +67 -0
- package/packages/core/dist/tree/diff.js.map +1 -0
- package/packages/core/dist/tree/index.d.ts +4 -0
- package/packages/core/dist/tree/index.d.ts.map +1 -0
- package/packages/core/dist/tree/index.js +23 -0
- package/packages/core/dist/tree/index.js.map +1 -0
- package/packages/core/dist/tree/node.d.ts +13 -0
- package/packages/core/dist/tree/node.d.ts.map +1 -0
- package/packages/core/dist/tree/node.js +59 -0
- package/packages/core/dist/tree/node.js.map +1 -0
- package/packages/core/dist/tree/tree.d.ts +11 -0
- package/packages/core/dist/tree/tree.d.ts.map +1 -0
- package/packages/core/dist/tree/tree.js +43 -0
- package/packages/core/dist/tree/tree.js.map +1 -0
- package/packages/core/package.json +30 -0
- package/packages/core/src/animation/easing.d.ts +22 -0
- package/packages/core/src/animation/easing.js +91 -0
- package/packages/core/src/animation/easing.js.map +1 -0
- package/packages/core/src/animation/easing.ts +88 -0
- package/packages/core/src/animation/index.d.ts +3 -0
- package/packages/core/src/animation/index.js +26 -0
- package/packages/core/src/animation/index.js.map +1 -0
- package/packages/core/src/animation/index.ts +12 -0
- package/packages/core/src/animation/interpolate.d.ts +6 -0
- package/packages/core/src/animation/interpolate.js +83 -0
- package/packages/core/src/animation/interpolate.js.map +1 -0
- package/packages/core/src/animation/interpolate.ts +107 -0
- package/packages/core/src/animation/spring.d.ts +20 -0
- package/packages/core/src/animation/spring.js +79 -0
- package/packages/core/src/animation/spring.js.map +1 -0
- package/packages/core/src/animation/spring.ts +118 -0
- package/packages/core/src/component/component.d.ts +5 -0
- package/packages/core/src/component/component.js +14 -0
- package/packages/core/src/component/component.js.map +1 -0
- package/packages/core/src/component/component.ts +22 -0
- package/packages/core/src/component/index.d.ts +1 -0
- package/packages/core/src/component/index.js +18 -0
- package/packages/core/src/component/index.js.map +1 -0
- package/packages/core/src/component/index.ts +1 -0
- package/packages/core/src/index.d.ts +5 -0
- package/packages/core/src/index.js +30 -0
- package/packages/core/src/index.js.map +1 -0
- package/packages/core/src/index.ts +18 -0
- package/packages/core/src/scheduler/index.d.ts +1 -0
- package/packages/core/src/scheduler/index.d.ts.map +1 -0
- package/packages/core/src/scheduler/index.js +20 -0
- package/packages/core/src/scheduler/index.js.map +1 -0
- package/packages/core/src/scheduler/index.ts +4 -0
- package/packages/core/src/scheduler/scheduler.d.ts +11 -0
- package/packages/core/src/scheduler/scheduler.d.ts.map +1 -0
- package/packages/core/src/scheduler/scheduler.js +61 -0
- package/packages/core/src/scheduler/scheduler.js.map +1 -0
- package/packages/core/src/scheduler/scheduler.ts +76 -0
- package/packages/core/src/tree/diff.d.ts +16 -0
- package/packages/core/src/tree/diff.js +67 -0
- package/packages/core/src/tree/diff.js.map +1 -0
- package/packages/core/src/tree/diff.ts +125 -0
- package/packages/core/src/tree/index.d.ts +3 -0
- package/packages/core/src/tree/index.js +23 -0
- package/packages/core/src/tree/index.js.map +1 -0
- package/packages/core/src/tree/index.ts +7 -0
- package/packages/core/src/tree/node.d.ts +12 -0
- package/packages/core/src/tree/node.d.ts.map +1 -0
- package/packages/core/src/tree/node.js +59 -0
- package/packages/core/src/tree/node.js.map +1 -0
- package/packages/core/src/tree/node.ts +96 -0
- package/packages/core/src/tree/tree.d.ts +10 -0
- package/packages/core/src/tree/tree.d.ts.map +1 -0
- package/packages/core/src/tree/tree.js +43 -0
- package/packages/core/src/tree/tree.js.map +1 -0
- package/packages/core/src/tree/tree.ts +64 -0
- package/packages/core/tsconfig.json +18 -0
- package/packages/db/dist/adapters/mongodb.d.ts +17 -0
- package/packages/db/dist/adapters/mongodb.d.ts.map +1 -0
- package/packages/db/dist/adapters/mongodb.js +64 -0
- package/packages/db/dist/adapters/mongodb.js.map +1 -0
- package/packages/db/dist/adapters/mysql.d.ts +15 -0
- package/packages/db/dist/adapters/mysql.d.ts.map +1 -0
- package/packages/db/dist/adapters/mysql.js +37 -0
- package/packages/db/dist/adapters/mysql.js.map +1 -0
- package/packages/db/dist/adapters/postgres.d.ts +15 -0
- package/packages/db/dist/adapters/postgres.d.ts.map +1 -0
- package/packages/db/dist/adapters/postgres.js +38 -0
- package/packages/db/dist/adapters/postgres.js.map +1 -0
- package/packages/db/dist/adapters/sqlite.d.ts +24 -0
- package/packages/db/dist/adapters/sqlite.d.ts.map +1 -0
- package/packages/db/dist/adapters/sqlite.js +56 -0
- package/packages/db/dist/adapters/sqlite.js.map +1 -0
- package/packages/db/dist/db.d.ts +45 -0
- package/packages/db/dist/db.d.ts.map +1 -0
- package/packages/db/dist/db.js +111 -0
- package/packages/db/dist/db.js.map +1 -0
- package/packages/db/dist/index.d.ts +7 -0
- package/packages/db/dist/index.d.ts.map +1 -0
- package/packages/db/dist/index.js +31 -0
- package/packages/db/dist/index.js.map +1 -0
- package/packages/db/dist/query.d.ts +26 -0
- package/packages/db/dist/query.d.ts.map +1 -0
- package/packages/db/dist/query.js +71 -0
- package/packages/db/dist/query.js.map +1 -0
- package/packages/db/package.json +30 -0
- package/packages/db/src/adapters/mongodb.ts +130 -0
- package/packages/db/src/adapters/mysql.ts +78 -0
- package/packages/db/src/adapters/postgres.ts +80 -0
- package/packages/db/src/adapters/sqlite.ts +99 -0
- package/packages/db/src/db.ts +175 -0
- package/packages/db/src/index.ts +20 -0
- package/packages/db/src/query.ts +154 -0
- package/packages/db/tsconfig.json +17 -0
- package/packages/device/README.md +21 -0
- package/packages/device/dist/camera.d.ts +28 -0
- package/packages/device/dist/camera.d.ts.map +1 -0
- package/packages/device/dist/camera.js +42 -0
- package/packages/device/dist/camera.js.map +1 -0
- package/packages/device/dist/contacts.d.ts +19 -0
- package/packages/device/dist/contacts.d.ts.map +1 -0
- package/packages/device/dist/contacts.js +40 -0
- package/packages/device/dist/contacts.js.map +1 -0
- package/packages/device/dist/index.d.ts +33 -0
- package/packages/device/dist/index.d.ts.map +1 -0
- package/packages/device/dist/index.js +35 -0
- package/packages/device/dist/index.js.map +1 -0
- package/packages/device/dist/media.d.ts +60 -0
- package/packages/device/dist/media.d.ts.map +1 -0
- package/packages/device/dist/media.js +129 -0
- package/packages/device/dist/media.js.map +1 -0
- package/packages/device/dist/sensors.d.ts +17 -0
- package/packages/device/dist/sensors.d.ts.map +1 -0
- package/packages/device/dist/sensors.js +32 -0
- package/packages/device/dist/sensors.js.map +1 -0
- package/packages/device/package.json +30 -0
- package/packages/device/src/camera.ts +65 -0
- package/packages/device/src/contacts.ts +57 -0
- package/packages/device/src/index.ts +20 -0
- package/packages/device/src/media.ts +194 -0
- package/packages/device/src/sensors.ts +51 -0
- package/packages/device/test/api.test.js +21 -0
- package/packages/device/tsconfig.json +9 -0
- package/packages/file/dist/file.d.ts +55 -0
- package/packages/file/dist/file.d.ts.map +1 -0
- package/packages/file/dist/file.js +114 -0
- package/packages/file/dist/file.js.map +1 -0
- package/packages/file/dist/index.d.ts +2 -0
- package/packages/file/dist/index.d.ts.map +1 -0
- package/packages/file/dist/index.js +20 -0
- package/packages/file/dist/index.js.map +1 -0
- package/packages/file/package.json +30 -0
- package/packages/file/src/file.ts +209 -0
- package/packages/file/src/index.ts +4 -0
- package/packages/file/tsconfig.json +17 -0
- package/packages/i18n/dist/i18n.d.ts +33 -0
- package/packages/i18n/dist/i18n.d.ts.map +1 -0
- package/packages/i18n/dist/i18n.js +149 -0
- package/packages/i18n/dist/i18n.js.map +1 -0
- package/packages/i18n/dist/index.d.ts +2 -0
- package/packages/i18n/dist/index.d.ts.map +1 -0
- package/packages/i18n/dist/index.js +20 -0
- package/packages/i18n/dist/index.js.map +1 -0
- package/packages/i18n/package.json +30 -0
- package/packages/i18n/src/i18n.ts +225 -0
- package/packages/i18n/src/index.ts +4 -0
- package/packages/i18n/tsconfig.json +17 -0
- package/packages/logger/dist/index.d.ts +2 -0
- package/packages/logger/dist/index.d.ts.map +1 -0
- package/packages/logger/dist/index.js +20 -0
- package/packages/logger/dist/index.js.map +1 -0
- package/packages/logger/dist/logger.d.ts +50 -0
- package/packages/logger/dist/logger.d.ts.map +1 -0
- package/packages/logger/dist/logger.js +147 -0
- package/packages/logger/dist/logger.js.map +1 -0
- package/packages/logger/package.json +30 -0
- package/packages/logger/src/index.ts +4 -0
- package/packages/logger/src/logger.ts +240 -0
- package/packages/logger/tsconfig.json +17 -0
- package/packages/network/dist/discovery.d.ts +20 -0
- package/packages/network/dist/discovery.d.ts.map +1 -0
- package/packages/network/dist/discovery.js +58 -0
- package/packages/network/dist/discovery.js.map +1 -0
- package/packages/network/dist/index.d.ts +3 -0
- package/packages/network/dist/index.d.ts.map +1 -0
- package/packages/network/dist/index.js +23 -0
- package/packages/network/dist/index.js.map +1 -0
- package/packages/network/dist/transfer.d.ts +40 -0
- package/packages/network/dist/transfer.d.ts.map +1 -0
- package/packages/network/dist/transfer.js +73 -0
- package/packages/network/dist/transfer.js.map +1 -0
- package/packages/network/package.json +30 -0
- package/packages/network/src/discovery.ts +107 -0
- package/packages/network/src/index.ts +8 -0
- package/packages/network/src/transfer.ts +182 -0
- package/packages/network/tsconfig.json +17 -0
- package/packages/notifications/dist/alert.d.ts +34 -0
- package/packages/notifications/dist/alert.d.ts.map +1 -0
- package/packages/notifications/dist/alert.js +99 -0
- package/packages/notifications/dist/alert.js.map +1 -0
- package/packages/notifications/dist/email.d.ts +41 -0
- package/packages/notifications/dist/email.d.ts.map +1 -0
- package/packages/notifications/dist/email.js +51 -0
- package/packages/notifications/dist/email.js.map +1 -0
- package/packages/notifications/dist/index.d.ts +84 -0
- package/packages/notifications/dist/index.d.ts.map +1 -0
- package/packages/notifications/dist/index.js +52 -0
- package/packages/notifications/dist/index.js.map +1 -0
- package/packages/notifications/dist/notify.d.ts +36 -0
- package/packages/notifications/dist/notify.d.ts.map +1 -0
- package/packages/notifications/dist/notify.js +62 -0
- package/packages/notifications/dist/notify.js.map +1 -0
- package/packages/notifications/dist/push.d.ts +49 -0
- package/packages/notifications/dist/push.d.ts.map +1 -0
- package/packages/notifications/dist/push.js +76 -0
- package/packages/notifications/dist/push.js.map +1 -0
- package/packages/notifications/dist/sms.d.ts +34 -0
- package/packages/notifications/dist/sms.d.ts.map +1 -0
- package/packages/notifications/dist/sms.js +44 -0
- package/packages/notifications/dist/sms.js.map +1 -0
- package/packages/notifications/dist/storage.d.ts +30 -0
- package/packages/notifications/dist/storage.d.ts.map +1 -0
- package/packages/notifications/dist/storage.js +93 -0
- package/packages/notifications/dist/storage.js.map +1 -0
- package/packages/notifications/dist/toast.d.ts +47 -0
- package/packages/notifications/dist/toast.d.ts.map +1 -0
- package/packages/notifications/dist/toast.js +138 -0
- package/packages/notifications/dist/toast.js.map +1 -0
- package/packages/notifications/dist/users.d.ts +36 -0
- package/packages/notifications/dist/users.d.ts.map +1 -0
- package/packages/notifications/dist/users.js +87 -0
- package/packages/notifications/dist/users.js.map +1 -0
- package/packages/notifications/notifications.db +0 -0
- package/packages/notifications/package.json +33 -0
- package/packages/notifications/src/alert.ts +133 -0
- package/packages/notifications/src/email.ts +127 -0
- package/packages/notifications/src/index.ts +44 -0
- package/packages/notifications/src/notify.ts +126 -0
- package/packages/notifications/src/push.ts +145 -0
- package/packages/notifications/src/sms.ts +97 -0
- package/packages/notifications/src/storage.ts +109 -0
- package/packages/notifications/src/toast.ts +186 -0
- package/packages/notifications/src/types/better-sqlite3.d.ts +5 -0
- package/packages/notifications/src/users.ts +121 -0
- package/packages/notifications/test/notifications.test.js +41 -0
- package/packages/notifications/test/storage.test.js +34 -0
- package/packages/notifications/tsconfig.json +19 -0
- package/packages/payments/dist/gateways/momo.d.ts +25 -0
- package/packages/payments/dist/gateways/momo.d.ts.map +1 -0
- package/packages/payments/dist/gateways/momo.js +44 -0
- package/packages/payments/dist/gateways/momo.js.map +1 -0
- package/packages/payments/dist/gateways/paystack.d.ts +24 -0
- package/packages/payments/dist/gateways/paystack.d.ts.map +1 -0
- package/packages/payments/dist/gateways/paystack.js +51 -0
- package/packages/payments/dist/gateways/paystack.js.map +1 -0
- package/packages/payments/dist/index.d.ts +4 -0
- package/packages/payments/dist/index.d.ts.map +1 -0
- package/packages/payments/dist/index.js +25 -0
- package/packages/payments/dist/index.js.map +1 -0
- package/packages/payments/dist/payment.d.ts +42 -0
- package/packages/payments/dist/payment.d.ts.map +1 -0
- package/packages/payments/dist/payment.js +124 -0
- package/packages/payments/dist/payment.js.map +1 -0
- package/packages/payments/package.json +30 -0
- package/packages/payments/src/gateways/momo.ts +97 -0
- package/packages/payments/src/gateways/paystack.ts +102 -0
- package/packages/payments/src/index.ts +11 -0
- package/packages/payments/src/payment.ts +229 -0
- package/packages/payments/tsconfig.json +17 -0
- package/packages/renderer/README.md +188 -0
- package/packages/renderer/dist/canvas.d.ts +24 -0
- package/packages/renderer/dist/canvas.d.ts.map +1 -0
- package/packages/renderer/dist/canvas.js +38 -0
- package/packages/renderer/dist/canvas.js.map +1 -0
- package/packages/renderer/dist/context.d.ts +34 -0
- package/packages/renderer/dist/context.d.ts.map +1 -0
- package/packages/renderer/dist/context.js +45 -0
- package/packages/renderer/dist/context.js.map +1 -0
- package/packages/renderer/dist/dirty-region.d.ts +43 -0
- package/packages/renderer/dist/dirty-region.d.ts.map +1 -0
- package/packages/renderer/dist/dirty-region.js +106 -0
- package/packages/renderer/dist/dirty-region.js.map +1 -0
- package/packages/renderer/dist/engine.d.ts +57 -0
- package/packages/renderer/dist/engine.d.ts.map +1 -0
- package/packages/renderer/dist/engine.js +95 -0
- package/packages/renderer/dist/engine.js.map +1 -0
- package/packages/renderer/dist/example.d.ts +14 -0
- package/packages/renderer/dist/example.d.ts.map +1 -0
- package/packages/renderer/dist/example.js +160 -0
- package/packages/renderer/dist/example.js.map +1 -0
- package/packages/renderer/dist/filters.d.ts +23 -0
- package/packages/renderer/dist/filters.d.ts.map +1 -0
- package/packages/renderer/dist/filters.js +41 -0
- package/packages/renderer/dist/filters.js.map +1 -0
- package/packages/renderer/dist/icons.d.ts +7 -0
- package/packages/renderer/dist/icons.d.ts.map +1 -0
- package/packages/renderer/dist/icons.js +31 -0
- package/packages/renderer/dist/icons.js.map +1 -0
- package/packages/renderer/dist/index.d.ts +16 -0
- package/packages/renderer/dist/index.d.ts.map +1 -0
- package/packages/renderer/dist/index.js +34 -0
- package/packages/renderer/dist/index.js.map +1 -0
- package/packages/renderer/dist/painter.d.ts +27 -0
- package/packages/renderer/dist/painter.d.ts.map +1 -0
- package/packages/renderer/dist/painter.js +221 -0
- package/packages/renderer/dist/painter.js.map +1 -0
- package/packages/renderer/dist/renderer.d.ts +72 -0
- package/packages/renderer/dist/renderer.d.ts.map +1 -0
- package/packages/renderer/dist/renderer.js +120 -0
- package/packages/renderer/dist/renderer.js.map +1 -0
- package/packages/renderer/dist/svg-export.d.ts +52 -0
- package/packages/renderer/dist/svg-export.d.ts.map +1 -0
- package/packages/renderer/dist/svg-export.js +159 -0
- package/packages/renderer/dist/svg-export.js.map +1 -0
- package/packages/renderer/package.json +34 -0
- package/packages/renderer/src/canvas.d.ts +23 -0
- package/packages/renderer/src/canvas.js +38 -0
- package/packages/renderer/src/canvas.js.map +1 -0
- package/packages/renderer/src/canvas.ts +70 -0
- package/packages/renderer/src/context.d.ts +33 -0
- package/packages/renderer/src/context.js +45 -0
- package/packages/renderer/src/context.js.map +1 -0
- package/packages/renderer/src/context.ts +83 -0
- package/packages/renderer/src/dirty-region.d.ts +42 -0
- package/packages/renderer/src/dirty-region.js +106 -0
- package/packages/renderer/src/dirty-region.js.map +1 -0
- package/packages/renderer/src/dirty-region.ts +125 -0
- package/packages/renderer/src/engine.d.ts +56 -0
- package/packages/renderer/src/engine.js +95 -0
- package/packages/renderer/src/engine.js.map +1 -0
- package/packages/renderer/src/engine.ts +131 -0
- package/packages/renderer/src/example.ts +184 -0
- package/packages/renderer/src/filters.d.ts +22 -0
- package/packages/renderer/src/filters.js +41 -0
- package/packages/renderer/src/filters.js.map +1 -0
- package/packages/renderer/src/filters.ts +63 -0
- package/packages/renderer/src/icons.ts +33 -0
- package/packages/renderer/src/index.d.ts +15 -0
- package/packages/renderer/src/index.js +34 -0
- package/packages/renderer/src/index.js.map +1 -0
- package/packages/renderer/src/index.ts +19 -0
- package/packages/renderer/src/painter.d.ts +26 -0
- package/packages/renderer/src/painter.js +127 -0
- package/packages/renderer/src/painter.js.map +1 -0
- package/packages/renderer/src/painter.ts +269 -0
- package/packages/renderer/src/renderer.d.ts +71 -0
- package/packages/renderer/src/renderer.js +120 -0
- package/packages/renderer/src/renderer.js.map +1 -0
- package/packages/renderer/src/renderer.ts +171 -0
- package/packages/renderer/src/svg-export.d.ts +47 -0
- package/packages/renderer/src/svg-export.js +125 -0
- package/packages/renderer/src/svg-export.js.map +1 -0
- package/packages/renderer/src/svg-export.ts +270 -0
- package/packages/renderer/test/renderer.test.js +41 -0
- package/packages/renderer/tsconfig.json +10 -0
- package/packages/router/dist/app.d.ts +10 -0
- package/packages/router/dist/app.d.ts.map +1 -0
- package/packages/router/dist/app.js +12 -0
- package/packages/router/dist/app.js.map +1 -0
- package/packages/router/dist/file-router.d.ts +36 -0
- package/packages/router/dist/file-router.d.ts.map +1 -0
- package/packages/router/dist/file-router.js +145 -0
- package/packages/router/dist/file-router.js.map +1 -0
- package/packages/router/dist/index.d.ts +6 -0
- package/packages/router/dist/index.d.ts.map +1 -0
- package/packages/router/dist/index.js +24 -0
- package/packages/router/dist/index.js.map +1 -0
- package/packages/router/dist/manifest.d.ts +10 -0
- package/packages/router/dist/manifest.d.ts.map +1 -0
- package/packages/router/dist/manifest.js +26 -0
- package/packages/router/dist/manifest.js.map +1 -0
- package/packages/router/dist/router.d.ts +31 -0
- package/packages/router/dist/router.d.ts.map +1 -0
- package/packages/router/dist/router.js +112 -0
- package/packages/router/dist/router.js.map +1 -0
- package/packages/router/dist/screen.d.ts +31 -0
- package/packages/router/dist/screen.d.ts.map +1 -0
- package/packages/router/dist/screen.js +34 -0
- package/packages/router/dist/screen.js.map +1 -0
- package/packages/router/package.json +30 -0
- package/packages/router/src/app.ts +16 -0
- package/packages/router/src/file-router.ts +181 -0
- package/packages/router/src/index.d.ts +2 -0
- package/packages/router/src/index.js +23 -0
- package/packages/router/src/index.js.map +1 -0
- package/packages/router/src/index.ts +7 -0
- package/packages/router/src/manifest.ts +27 -0
- package/packages/router/src/router.d.ts +30 -0
- package/packages/router/src/router.js +112 -0
- package/packages/router/src/router.js.map +1 -0
- package/packages/router/src/router.ts +161 -0
- package/packages/router/src/screen.d.ts +24 -0
- package/packages/router/src/screen.js +18 -0
- package/packages/router/src/screen.js.map +1 -0
- package/packages/router/src/screen.ts +68 -0
- package/packages/router/test/router.test.js +30 -0
- package/packages/router/tsconfig.json +17 -0
- package/packages/security/dist/biometric.d.ts +27 -0
- package/packages/security/dist/biometric.d.ts.map +1 -0
- package/packages/security/dist/biometric.js +63 -0
- package/packages/security/dist/biometric.js.map +1 -0
- package/packages/security/dist/index.d.ts +2 -0
- package/packages/security/dist/index.d.ts.map +1 -0
- package/packages/security/dist/index.js +21 -0
- package/packages/security/dist/index.js.map +1 -0
- package/packages/security/package.json +30 -0
- package/packages/security/src/biometric.ts +121 -0
- package/packages/security/src/index.ts +5 -0
- package/packages/security/tsconfig.json +17 -0
- package/packages/state/dist/computed.d.ts +10 -0
- package/packages/state/dist/computed.d.ts.map +1 -0
- package/packages/state/dist/computed.js +55 -0
- package/packages/state/dist/computed.js.map +1 -0
- package/packages/state/dist/context.d.ts +9 -0
- package/packages/state/dist/context.d.ts.map +1 -0
- package/packages/state/dist/context.js +36 -0
- package/packages/state/dist/context.js.map +1 -0
- package/packages/state/dist/core/src/animation/easing.d.ts +23 -0
- package/packages/state/dist/core/src/animation/easing.d.ts.map +1 -0
- package/packages/state/dist/core/src/animation/easing.js +91 -0
- package/packages/state/dist/core/src/animation/easing.js.map +1 -0
- package/packages/state/dist/core/src/animation/index.d.ts +4 -0
- package/packages/state/dist/core/src/animation/index.d.ts.map +1 -0
- package/packages/state/dist/core/src/animation/index.js +26 -0
- package/packages/state/dist/core/src/animation/index.js.map +1 -0
- package/packages/state/dist/core/src/animation/interpolate.d.ts +7 -0
- package/packages/state/dist/core/src/animation/interpolate.d.ts.map +1 -0
- package/packages/state/dist/core/src/animation/interpolate.js +83 -0
- package/packages/state/dist/core/src/animation/interpolate.js.map +1 -0
- package/packages/state/dist/core/src/animation/spring.d.ts +21 -0
- package/packages/state/dist/core/src/animation/spring.d.ts.map +1 -0
- package/packages/state/dist/core/src/animation/spring.js +79 -0
- package/packages/state/dist/core/src/animation/spring.js.map +1 -0
- package/packages/state/dist/core/src/component/component.d.ts +6 -0
- package/packages/state/dist/core/src/component/component.d.ts.map +1 -0
- package/packages/state/dist/core/src/component/component.js +14 -0
- package/packages/state/dist/core/src/component/component.js.map +1 -0
- package/packages/state/dist/core/src/component/index.d.ts +2 -0
- package/packages/state/dist/core/src/component/index.d.ts.map +1 -0
- package/packages/state/dist/core/src/component/index.js +18 -0
- package/packages/state/dist/core/src/component/index.js.map +1 -0
- package/packages/state/dist/core/src/index.d.ts +6 -0
- package/packages/state/dist/core/src/index.d.ts.map +1 -0
- package/packages/state/dist/core/src/index.js +30 -0
- package/packages/state/dist/core/src/index.js.map +1 -0
- package/packages/state/dist/core/src/scheduler/index.d.ts +2 -0
- package/packages/state/dist/core/src/scheduler/index.d.ts.map +1 -0
- package/packages/state/dist/core/src/scheduler/index.js +20 -0
- package/packages/state/dist/core/src/scheduler/index.js.map +1 -0
- package/packages/state/dist/core/src/scheduler/scheduler.d.ts +12 -0
- package/packages/state/dist/core/src/scheduler/scheduler.d.ts.map +1 -0
- package/packages/state/dist/core/src/scheduler/scheduler.js +61 -0
- package/packages/state/dist/core/src/scheduler/scheduler.js.map +1 -0
- package/packages/state/dist/core/src/tree/diff.d.ts +17 -0
- package/packages/state/dist/core/src/tree/diff.d.ts.map +1 -0
- package/packages/state/dist/core/src/tree/diff.js +67 -0
- package/packages/state/dist/core/src/tree/diff.js.map +1 -0
- package/packages/state/dist/core/src/tree/index.d.ts +4 -0
- package/packages/state/dist/core/src/tree/index.d.ts.map +1 -0
- package/packages/state/dist/core/src/tree/index.js +23 -0
- package/packages/state/dist/core/src/tree/index.js.map +1 -0
- package/packages/state/dist/core/src/tree/node.d.ts +13 -0
- package/packages/state/dist/core/src/tree/node.d.ts.map +1 -0
- package/packages/state/dist/core/src/tree/node.js +59 -0
- package/packages/state/dist/core/src/tree/node.js.map +1 -0
- package/packages/state/dist/core/src/tree/tree.d.ts +11 -0
- package/packages/state/dist/core/src/tree/tree.d.ts.map +1 -0
- package/packages/state/dist/core/src/tree/tree.js +43 -0
- package/packages/state/dist/core/src/tree/tree.js.map +1 -0
- package/packages/state/dist/effect.d.ts +13 -0
- package/packages/state/dist/effect.d.ts.map +1 -0
- package/packages/state/dist/effect.js +74 -0
- package/packages/state/dist/effect.js.map +1 -0
- package/packages/state/dist/events/dispatch.d.ts +9 -0
- package/packages/state/dist/events/dispatch.d.ts.map +1 -0
- package/packages/state/dist/events/dispatch.js +64 -0
- package/packages/state/dist/events/dispatch.js.map +1 -0
- package/packages/state/dist/events/event.d.ts +18 -0
- package/packages/state/dist/events/event.d.ts.map +1 -0
- package/packages/state/dist/events/event.js +28 -0
- package/packages/state/dist/events/event.js.map +1 -0
- package/packages/state/dist/events/hittest.d.ts +15 -0
- package/packages/state/dist/events/hittest.d.ts.map +1 -0
- package/packages/state/dist/events/hittest.js +56 -0
- package/packages/state/dist/events/hittest.js.map +1 -0
- package/packages/state/dist/events/index.d.ts +6 -0
- package/packages/state/dist/events/index.d.ts.map +1 -0
- package/packages/state/dist/events/index.js +30 -0
- package/packages/state/dist/events/index.js.map +1 -0
- package/packages/state/dist/events/ingestion.d.ts +25 -0
- package/packages/state/dist/events/ingestion.d.ts.map +1 -0
- package/packages/state/dist/events/ingestion.js +61 -0
- package/packages/state/dist/events/ingestion.js.map +1 -0
- package/packages/state/dist/events/propagation.d.ts +9 -0
- package/packages/state/dist/events/propagation.d.ts.map +1 -0
- package/packages/state/dist/events/propagation.js +58 -0
- package/packages/state/dist/events/propagation.js.map +1 -0
- package/packages/state/dist/index.d.ts +10 -0
- package/packages/state/dist/index.d.ts.map +1 -0
- package/packages/state/dist/index.js +38 -0
- package/packages/state/dist/index.js.map +1 -0
- package/packages/state/dist/reducer.d.ts +18 -0
- package/packages/state/dist/reducer.d.ts.map +1 -0
- package/packages/state/dist/reducer.js +44 -0
- package/packages/state/dist/reducer.js.map +1 -0
- package/packages/state/dist/ref.d.ts +9 -0
- package/packages/state/dist/ref.d.ts.map +1 -0
- package/packages/state/dist/ref.js +33 -0
- package/packages/state/dist/ref.js.map +1 -0
- package/packages/state/dist/state/src/computed.d.ts +10 -0
- package/packages/state/dist/state/src/computed.d.ts.map +1 -0
- package/packages/state/dist/state/src/computed.js +55 -0
- package/packages/state/dist/state/src/computed.js.map +1 -0
- package/packages/state/dist/state/src/context.d.ts +9 -0
- package/packages/state/dist/state/src/context.d.ts.map +1 -0
- package/packages/state/dist/state/src/context.js +36 -0
- package/packages/state/dist/state/src/context.js.map +1 -0
- package/packages/state/dist/state/src/effect.d.ts +13 -0
- package/packages/state/dist/state/src/effect.d.ts.map +1 -0
- package/packages/state/dist/state/src/effect.js +74 -0
- package/packages/state/dist/state/src/effect.js.map +1 -0
- package/packages/state/dist/state/src/events/dispatch.d.ts +9 -0
- package/packages/state/dist/state/src/events/dispatch.d.ts.map +1 -0
- package/packages/state/dist/state/src/events/dispatch.js +64 -0
- package/packages/state/dist/state/src/events/dispatch.js.map +1 -0
- package/packages/state/dist/state/src/events/event.d.ts +18 -0
- package/packages/state/dist/state/src/events/event.d.ts.map +1 -0
- package/packages/state/dist/state/src/events/event.js +28 -0
- package/packages/state/dist/state/src/events/event.js.map +1 -0
- package/packages/state/dist/state/src/events/hittest.d.ts +16 -0
- package/packages/state/dist/state/src/events/hittest.d.ts.map +1 -0
- package/packages/state/dist/state/src/events/hittest.js +56 -0
- package/packages/state/dist/state/src/events/hittest.js.map +1 -0
- package/packages/state/dist/state/src/events/index.d.ts +6 -0
- package/packages/state/dist/state/src/events/index.d.ts.map +1 -0
- package/packages/state/dist/state/src/events/index.js +30 -0
- package/packages/state/dist/state/src/events/index.js.map +1 -0
- package/packages/state/dist/state/src/events/ingestion.d.ts +25 -0
- package/packages/state/dist/state/src/events/ingestion.d.ts.map +1 -0
- package/packages/state/dist/state/src/events/ingestion.js +61 -0
- package/packages/state/dist/state/src/events/ingestion.js.map +1 -0
- package/packages/state/dist/state/src/events/propagation.d.ts +10 -0
- package/packages/state/dist/state/src/events/propagation.d.ts.map +1 -0
- package/packages/state/dist/state/src/events/propagation.js +58 -0
- package/packages/state/dist/state/src/events/propagation.js.map +1 -0
- package/packages/state/dist/state/src/index.d.ts +9 -0
- package/packages/state/dist/state/src/index.d.ts.map +1 -0
- package/packages/state/dist/state/src/index.js +36 -0
- package/packages/state/dist/state/src/index.js.map +1 -0
- package/packages/state/dist/state/src/reducer.d.ts +18 -0
- package/packages/state/dist/state/src/reducer.d.ts.map +1 -0
- package/packages/state/dist/state/src/reducer.js +44 -0
- package/packages/state/dist/state/src/reducer.js.map +1 -0
- package/packages/state/dist/state/src/ref.d.ts +9 -0
- package/packages/state/dist/state/src/ref.d.ts.map +1 -0
- package/packages/state/dist/state/src/ref.js +33 -0
- package/packages/state/dist/state/src/ref.js.map +1 -0
- package/packages/state/dist/state/src/state.d.ts +10 -0
- package/packages/state/dist/state/src/state.d.ts.map +1 -0
- package/packages/state/dist/state/src/state.js +70 -0
- package/packages/state/dist/state/src/state.js.map +1 -0
- package/packages/state/dist/state/src/store.d.ts +19 -0
- package/packages/state/dist/state/src/store.d.ts.map +1 -0
- package/packages/state/dist/state/src/store.js +42 -0
- package/packages/state/dist/state/src/store.js.map +1 -0
- package/packages/state/dist/state/src/watch.d.ts +15 -0
- package/packages/state/dist/state/src/watch.d.ts.map +1 -0
- package/packages/state/dist/state/src/watch.js +79 -0
- package/packages/state/dist/state/src/watch.js.map +1 -0
- package/packages/state/dist/state.d.ts +10 -0
- package/packages/state/dist/state.d.ts.map +1 -0
- package/packages/state/dist/state.js +69 -0
- package/packages/state/dist/state.js.map +1 -0
- package/packages/state/dist/store.d.ts +19 -0
- package/packages/state/dist/store.d.ts.map +1 -0
- package/packages/state/dist/store.js +42 -0
- package/packages/state/dist/store.js.map +1 -0
- package/packages/state/dist/watch.d.ts +15 -0
- package/packages/state/dist/watch.d.ts.map +1 -0
- package/packages/state/dist/watch.js +79 -0
- package/packages/state/dist/watch.js.map +1 -0
- package/packages/state/package.json +30 -0
- package/packages/state/src/computed.ts +75 -0
- package/packages/state/src/context.ts +56 -0
- package/packages/state/src/effect.ts +100 -0
- package/packages/state/src/events/dispatch.ts +79 -0
- package/packages/state/src/events/event.ts +97 -0
- package/packages/state/src/events/hittest.ts +95 -0
- package/packages/state/src/events/index.ts +18 -0
- package/packages/state/src/events/ingestion.ts +102 -0
- package/packages/state/src/events/propagation.ts +83 -0
- package/packages/state/src/index.ts +32 -0
- package/packages/state/src/reducer.ts +87 -0
- package/packages/state/src/ref.ts +41 -0
- package/packages/state/src/state.ts +97 -0
- package/packages/state/src/store.ts +79 -0
- package/packages/state/src/watch.ts +131 -0
- package/packages/state/test/api.test.js +16 -0
- package/packages/state/tsconfig.json +17 -0
- package/packages/states/src/computed.ts +0 -0
- package/packages/states/src/state.ts +0 -0
- package/packages/states/tsconfig.json +0 -0
- package/packages/theme/dist/animate.d.ts +72 -0
- package/packages/theme/dist/animate.d.ts.map +1 -0
- package/packages/theme/dist/animate.js +154 -0
- package/packages/theme/dist/animate.js.map +1 -0
- package/packages/theme/dist/index.d.ts +7 -0
- package/packages/theme/dist/index.d.ts.map +1 -0
- package/packages/theme/dist/index.js +32 -0
- package/packages/theme/dist/index.js.map +1 -0
- package/packages/theme/dist/style.d.ts +55 -0
- package/packages/theme/dist/style.d.ts.map +1 -0
- package/packages/theme/dist/style.js +29 -0
- package/packages/theme/dist/style.js.map +1 -0
- package/packages/theme/dist/stylesheet.d.ts +8 -0
- package/packages/theme/dist/stylesheet.d.ts.map +1 -0
- package/packages/theme/dist/stylesheet.js +22 -0
- package/packages/theme/dist/stylesheet.js.map +1 -0
- package/packages/theme/dist/theme.d.ts +23 -0
- package/packages/theme/dist/theme.d.ts.map +1 -0
- package/packages/theme/dist/theme.js +109 -0
- package/packages/theme/dist/theme.js.map +1 -0
- package/packages/theme/dist/tokens.d.ts +116 -0
- package/packages/theme/dist/tokens.d.ts.map +1 -0
- package/packages/theme/dist/tokens.js +127 -0
- package/packages/theme/dist/tokens.js.map +1 -0
- package/packages/theme/dist/variant.d.ts +17 -0
- package/packages/theme/dist/variant.d.ts.map +1 -0
- package/packages/theme/dist/variant.js +35 -0
- package/packages/theme/dist/variant.js.map +1 -0
- package/packages/theme/package.json +30 -0
- package/packages/theme/src/animate.ts +207 -0
- package/packages/theme/src/index.ts +21 -0
- package/packages/theme/src/style.ts +109 -0
- package/packages/theme/src/stylesheet.ts +40 -0
- package/packages/theme/src/theme.ts +145 -0
- package/packages/theme/src/tokens.ts +303 -0
- package/packages/theme/src/variant.ts +68 -0
- package/packages/theme/tsconfig.json +17 -0
- package/packages/ui/dist/charts/BarChart.d.ts +23 -0
- package/packages/ui/dist/charts/BarChart.d.ts.map +1 -0
- package/packages/ui/dist/charts/BarChart.js +34 -0
- package/packages/ui/dist/charts/BarChart.js.map +1 -0
- package/packages/ui/dist/charts/LineChart.d.ts +27 -0
- package/packages/ui/dist/charts/LineChart.d.ts.map +1 -0
- package/packages/ui/dist/charts/LineChart.js +35 -0
- package/packages/ui/dist/charts/LineChart.js.map +1 -0
- package/packages/ui/dist/charts/index.d.ts +3 -0
- package/packages/ui/dist/charts/index.d.ts.map +1 -0
- package/packages/ui/dist/charts/index.js +21 -0
- package/packages/ui/dist/charts/index.js.map +1 -0
- package/packages/ui/dist/conditional/If.d.ts +4 -0
- package/packages/ui/dist/conditional/If.d.ts.map +1 -0
- package/packages/ui/dist/conditional/If.js +25 -0
- package/packages/ui/dist/conditional/If.js.map +1 -0
- package/packages/ui/dist/data/List.d.ts +18 -0
- package/packages/ui/dist/data/List.d.ts.map +1 -0
- package/packages/ui/dist/data/List.js +27 -0
- package/packages/ui/dist/data/List.js.map +1 -0
- package/packages/ui/dist/data/Table.d.ts +3 -0
- package/packages/ui/dist/data/Table.d.ts.map +1 -0
- package/packages/ui/dist/data/Table.js +21 -0
- package/packages/ui/dist/data/Table.js.map +1 -0
- package/packages/ui/dist/data/index.d.ts +34 -0
- package/packages/ui/dist/data/index.d.ts.map +1 -0
- package/packages/ui/dist/data/index.js +30 -0
- package/packages/ui/dist/data/index.js.map +1 -0
- package/packages/ui/dist/display/Avatar.d.ts +18 -0
- package/packages/ui/dist/display/Avatar.d.ts.map +1 -0
- package/packages/ui/dist/display/Avatar.js +53 -0
- package/packages/ui/dist/display/Avatar.js.map +1 -0
- package/packages/ui/dist/display/Badge.d.ts +17 -0
- package/packages/ui/dist/display/Badge.d.ts.map +1 -0
- package/packages/ui/dist/display/Badge.js +31 -0
- package/packages/ui/dist/display/Badge.js.map +1 -0
- package/packages/ui/dist/display/Card.d.ts +20 -0
- package/packages/ui/dist/display/Card.d.ts.map +1 -0
- package/packages/ui/dist/display/Card.js +35 -0
- package/packages/ui/dist/display/Card.js.map +1 -0
- package/packages/ui/dist/display/Icon.d.ts +14 -0
- package/packages/ui/dist/display/Icon.d.ts.map +1 -0
- package/packages/ui/dist/display/Icon.js +23 -0
- package/packages/ui/dist/display/Icon.js.map +1 -0
- package/packages/ui/dist/display/Image.d.ts +22 -0
- package/packages/ui/dist/display/Image.d.ts.map +1 -0
- package/packages/ui/dist/display/Image.js +30 -0
- package/packages/ui/dist/display/Image.js.map +1 -0
- package/packages/ui/dist/display/index.d.ts +6 -0
- package/packages/ui/dist/display/index.d.ts.map +1 -0
- package/packages/ui/dist/display/index.js +24 -0
- package/packages/ui/dist/display/index.js.map +1 -0
- package/packages/ui/dist/feedback/EmptyState.d.ts +16 -0
- package/packages/ui/dist/feedback/EmptyState.d.ts.map +1 -0
- package/packages/ui/dist/feedback/EmptyState.js +25 -0
- package/packages/ui/dist/feedback/EmptyState.js.map +1 -0
- package/packages/ui/dist/feedback/Skeleton.d.ts +15 -0
- package/packages/ui/dist/feedback/Skeleton.d.ts.map +1 -0
- package/packages/ui/dist/feedback/Skeleton.js +24 -0
- package/packages/ui/dist/feedback/Skeleton.js.map +1 -0
- package/packages/ui/dist/feedback/Spinner.d.ts +13 -0
- package/packages/ui/dist/feedback/Spinner.d.ts.map +1 -0
- package/packages/ui/dist/feedback/Spinner.js +35 -0
- package/packages/ui/dist/feedback/Spinner.js.map +1 -0
- package/packages/ui/dist/feedback/index.d.ts +4 -0
- package/packages/ui/dist/feedback/index.d.ts.map +1 -0
- package/packages/ui/dist/feedback/index.js +22 -0
- package/packages/ui/dist/feedback/index.js.map +1 -0
- package/packages/ui/dist/index.d.ts +11 -0
- package/packages/ui/dist/index.d.ts.map +1 -0
- package/packages/ui/dist/index.js +40 -0
- package/packages/ui/dist/index.js.map +1 -0
- package/packages/ui/dist/input/Button.d.ts +26 -0
- package/packages/ui/dist/input/Button.d.ts.map +1 -0
- package/packages/ui/dist/input/Button.js +39 -0
- package/packages/ui/dist/input/Button.js.map +1 -0
- package/packages/ui/dist/input/Checkbox.d.ts +16 -0
- package/packages/ui/dist/input/Checkbox.d.ts.map +1 -0
- package/packages/ui/dist/input/Checkbox.js +25 -0
- package/packages/ui/dist/input/Checkbox.js.map +1 -0
- package/packages/ui/dist/input/Dropdown.d.ts +27 -0
- package/packages/ui/dist/input/Dropdown.d.ts.map +1 -0
- package/packages/ui/dist/input/Dropdown.js +30 -0
- package/packages/ui/dist/input/Dropdown.js.map +1 -0
- package/packages/ui/dist/input/Input.d.ts +34 -0
- package/packages/ui/dist/input/Input.d.ts.map +1 -0
- package/packages/ui/dist/input/Input.js +43 -0
- package/packages/ui/dist/input/Input.js.map +1 -0
- package/packages/ui/dist/input/SearchBar.d.ts +20 -0
- package/packages/ui/dist/input/SearchBar.d.ts.map +1 -0
- package/packages/ui/dist/input/SearchBar.js +31 -0
- package/packages/ui/dist/input/SearchBar.js.map +1 -0
- package/packages/ui/dist/input/Slider.d.ts +22 -0
- package/packages/ui/dist/input/Slider.d.ts.map +1 -0
- package/packages/ui/dist/input/Slider.js +32 -0
- package/packages/ui/dist/input/Slider.js.map +1 -0
- package/packages/ui/dist/input/Toggle.d.ts +17 -0
- package/packages/ui/dist/input/Toggle.d.ts.map +1 -0
- package/packages/ui/dist/input/Toggle.js +29 -0
- package/packages/ui/dist/input/Toggle.js.map +1 -0
- package/packages/ui/dist/input/index.d.ts +8 -0
- package/packages/ui/dist/input/index.d.ts.map +1 -0
- package/packages/ui/dist/input/index.js +26 -0
- package/packages/ui/dist/input/index.js.map +1 -0
- package/packages/ui/dist/layout/Box.d.ts +25 -0
- package/packages/ui/dist/layout/Box.d.ts.map +1 -0
- package/packages/ui/dist/layout/Box.js +34 -0
- package/packages/ui/dist/layout/Box.js.map +1 -0
- package/packages/ui/dist/layout/Column.d.ts +30 -0
- package/packages/ui/dist/layout/Column.d.ts.map +1 -0
- package/packages/ui/dist/layout/Column.js +32 -0
- package/packages/ui/dist/layout/Column.js.map +1 -0
- package/packages/ui/dist/layout/Divider.d.ts +14 -0
- package/packages/ui/dist/layout/Divider.d.ts.map +1 -0
- package/packages/ui/dist/layout/Divider.js +23 -0
- package/packages/ui/dist/layout/Divider.js.map +1 -0
- package/packages/ui/dist/layout/Grid.d.ts +17 -0
- package/packages/ui/dist/layout/Grid.d.ts.map +1 -0
- package/packages/ui/dist/layout/Grid.js +26 -0
- package/packages/ui/dist/layout/Grid.js.map +1 -0
- package/packages/ui/dist/layout/Row.d.ts +28 -0
- package/packages/ui/dist/layout/Row.d.ts.map +1 -0
- package/packages/ui/dist/layout/Row.js +29 -0
- package/packages/ui/dist/layout/Row.js.map +1 -0
- package/packages/ui/dist/layout/ScrollView.d.ts +18 -0
- package/packages/ui/dist/layout/ScrollView.d.ts.map +1 -0
- package/packages/ui/dist/layout/ScrollView.js +25 -0
- package/packages/ui/dist/layout/ScrollView.js.map +1 -0
- package/packages/ui/dist/layout/Spacer.d.ts +9 -0
- package/packages/ui/dist/layout/Spacer.d.ts.map +1 -0
- package/packages/ui/dist/layout/Spacer.js +21 -0
- package/packages/ui/dist/layout/Spacer.js.map +1 -0
- package/packages/ui/dist/layout/Stack.d.ts +14 -0
- package/packages/ui/dist/layout/Stack.d.ts.map +1 -0
- package/packages/ui/dist/layout/Stack.js +25 -0
- package/packages/ui/dist/layout/Stack.js.map +1 -0
- package/packages/ui/dist/layout/index.d.ts +9 -0
- package/packages/ui/dist/layout/index.d.ts.map +1 -0
- package/packages/ui/dist/layout/index.js +27 -0
- package/packages/ui/dist/layout/index.js.map +1 -0
- package/packages/ui/dist/navigation/BottomNav.d.ts +23 -0
- package/packages/ui/dist/navigation/BottomNav.d.ts.map +1 -0
- package/packages/ui/dist/navigation/BottomNav.js +25 -0
- package/packages/ui/dist/navigation/BottomNav.js.map +1 -0
- package/packages/ui/dist/navigation/Drawer.d.ts +18 -0
- package/packages/ui/dist/navigation/Drawer.d.ts.map +1 -0
- package/packages/ui/dist/navigation/Drawer.js +29 -0
- package/packages/ui/dist/navigation/Drawer.js.map +1 -0
- package/packages/ui/dist/navigation/TabBar.d.ts +22 -0
- package/packages/ui/dist/navigation/TabBar.d.ts.map +1 -0
- package/packages/ui/dist/navigation/TabBar.js +26 -0
- package/packages/ui/dist/navigation/TabBar.js.map +1 -0
- package/packages/ui/dist/navigation/index.d.ts +4 -0
- package/packages/ui/dist/navigation/index.d.ts.map +1 -0
- package/packages/ui/dist/navigation/index.js +22 -0
- package/packages/ui/dist/navigation/index.js.map +1 -0
- package/packages/ui/dist/overlay/Dialog.d.ts +31 -0
- package/packages/ui/dist/overlay/Dialog.d.ts.map +1 -0
- package/packages/ui/dist/overlay/Dialog.js +81 -0
- package/packages/ui/dist/overlay/Dialog.js.map +1 -0
- package/packages/ui/dist/overlay/Modal.d.ts +19 -0
- package/packages/ui/dist/overlay/Modal.d.ts.map +1 -0
- package/packages/ui/dist/overlay/Modal.js +31 -0
- package/packages/ui/dist/overlay/Modal.js.map +1 -0
- package/packages/ui/dist/overlay/Sheet.d.ts +20 -0
- package/packages/ui/dist/overlay/Sheet.d.ts.map +1 -0
- package/packages/ui/dist/overlay/Sheet.js +31 -0
- package/packages/ui/dist/overlay/Sheet.js.map +1 -0
- package/packages/ui/dist/overlay/index.d.ts +4 -0
- package/packages/ui/dist/overlay/index.d.ts.map +1 -0
- package/packages/ui/dist/overlay/index.js +22 -0
- package/packages/ui/dist/overlay/index.js.map +1 -0
- package/packages/ui/dist/typography/Code.d.ts +18 -0
- package/packages/ui/dist/typography/Code.d.ts.map +1 -0
- package/packages/ui/dist/typography/Code.js +29 -0
- package/packages/ui/dist/typography/Code.js.map +1 -0
- package/packages/ui/dist/typography/Heading.d.ts +14 -0
- package/packages/ui/dist/typography/Heading.d.ts.map +1 -0
- package/packages/ui/dist/typography/Heading.js +39 -0
- package/packages/ui/dist/typography/Heading.js.map +1 -0
- package/packages/ui/dist/typography/Markdown.d.ts +14 -0
- package/packages/ui/dist/typography/Markdown.d.ts.map +1 -0
- package/packages/ui/dist/typography/Markdown.js +27 -0
- package/packages/ui/dist/typography/Markdown.js.map +1 -0
- package/packages/ui/dist/typography/Text.d.ts +25 -0
- package/packages/ui/dist/typography/Text.d.ts.map +1 -0
- package/packages/ui/dist/typography/Text.js +34 -0
- package/packages/ui/dist/typography/Text.js.map +1 -0
- package/packages/ui/dist/typography/index.d.ts +5 -0
- package/packages/ui/dist/typography/index.d.ts.map +1 -0
- package/packages/ui/dist/typography/index.js +23 -0
- package/packages/ui/dist/typography/index.js.map +1 -0
- package/packages/ui/package.json +35 -0
- package/packages/ui/src/charts/BarChart.ts +86 -0
- package/packages/ui/src/charts/LineChart.ts +98 -0
- package/packages/ui/src/charts/index.ts +5 -0
- package/packages/ui/src/conditional/If.ts +30 -0
- package/packages/ui/src/data/List.ts +72 -0
- package/packages/ui/src/data/Table.ts +5 -0
- package/packages/ui/src/data/index.ts +111 -0
- package/packages/ui/src/display/Avatar.ts +93 -0
- package/packages/ui/src/display/Badge.ts +72 -0
- package/packages/ui/src/display/Card.ts +82 -0
- package/packages/ui/src/display/Icon.ts +75 -0
- package/packages/ui/src/display/Image.ts +80 -0
- package/packages/ui/src/display/index.ts +8 -0
- package/packages/ui/src/feedback/EmptyState.ts +56 -0
- package/packages/ui/src/feedback/Skeleton.ts +53 -0
- package/packages/ui/src/feedback/Spinner.ts +61 -0
- package/packages/ui/src/feedback/index.ts +6 -0
- package/packages/ui/src/index.ts +33 -0
- package/packages/ui/src/input/Button.ts +104 -0
- package/packages/ui/src/input/Checkbox.ts +58 -0
- package/packages/ui/src/input/Dropdown.ts +92 -0
- package/packages/ui/src/input/Input.ts +138 -0
- package/packages/ui/src/input/SearchBar.ts +77 -0
- package/packages/ui/src/input/Slider.ts +82 -0
- package/packages/ui/src/input/Toggle.ts +65 -0
- package/packages/ui/src/input/index.ts +10 -0
- package/packages/ui/src/layout/Box.ts +94 -0
- package/packages/ui/src/layout/Column.ts +86 -0
- package/packages/ui/src/layout/Divider.ts +50 -0
- package/packages/ui/src/layout/Grid.ts +62 -0
- package/packages/ui/src/layout/Row.ts +77 -0
- package/packages/ui/src/layout/ScrollView.ts +64 -0
- package/packages/ui/src/layout/Spacer.ts +34 -0
- package/packages/ui/src/layout/Stack.ts +54 -0
- package/packages/ui/src/layout/index.ts +11 -0
- package/packages/ui/src/navigation/BottomNav.ts +73 -0
- package/packages/ui/src/navigation/Drawer.ts +72 -0
- package/packages/ui/src/navigation/TabBar.ts +73 -0
- package/packages/ui/src/navigation/index.ts +6 -0
- package/packages/ui/src/overlay/Dialog.ts +124 -0
- package/packages/ui/src/overlay/Modal.ts +76 -0
- package/packages/ui/src/overlay/Sheet.ts +79 -0
- package/packages/ui/src/overlay/index.ts +6 -0
- package/packages/ui/src/typography/Code.ts +88 -0
- package/packages/ui/src/typography/Heading.ts +70 -0
- package/packages/ui/src/typography/Markdown.ts +56 -0
- package/packages/ui/src/typography/Text.ts +104 -0
- package/packages/ui/src/typography/index.ts +7 -0
- package/packages/ui/tsconfig.json +18 -0
- package/packages/updater/dist/index.d.ts +2 -0
- package/packages/updater/dist/index.d.ts.map +1 -0
- package/packages/updater/dist/index.js +20 -0
- package/packages/updater/dist/index.js.map +1 -0
- package/packages/updater/dist/updater.d.ts +49 -0
- package/packages/updater/dist/updater.d.ts.map +1 -0
- package/packages/updater/dist/updater.js +119 -0
- package/packages/updater/dist/updater.js.map +1 -0
- package/packages/updater/package.json +30 -0
- package/packages/updater/src/index.ts +4 -0
- package/packages/updater/src/updater.ts +254 -0
- package/packages/updater/tsconfig.json +17 -0
- package/prompt-app/addlibrary.ts +7 -0
- package/prompt-app/app.dtx +27 -0
- package/prompt-app/package.json +13 -0
- package/prompt-app/screens/Home.dtx +20 -0
- package/prompt-app/tsconfig.json +8 -0
- package/tools/build/build.js +38 -0
- package/tools/build/publish.js +39 -0
- package/tools/build/test.js +24 -0
- package/ts-app/addlibrary.ts +7 -0
- package/ts-app/app.ts +29 -0
- package/ts-app/package.json +13 -0
- package/ts-app/screens/Home.ts +20 -0
- package/ts-app/tsconfig.json +8 -0
- package/tsconfig.json +13 -0
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
// list.ts
|
|
2
|
+
// dfcli lib list
|
|
3
|
+
// Shows all libraries currently installed in the project.
|
|
4
|
+
// Reads from addlibrary.ts — the source of truth.
|
|
5
|
+
|
|
6
|
+
import {
|
|
7
|
+
readManifest,
|
|
8
|
+
} from '../../registry/manifest'
|
|
9
|
+
import {
|
|
10
|
+
getInstalledVersion,
|
|
11
|
+
} from '../../registry/installer'
|
|
12
|
+
|
|
13
|
+
// Runs the lib list command
|
|
14
|
+
function libList(): void {
|
|
15
|
+
const entries = readManifest()
|
|
16
|
+
|
|
17
|
+
console.log('\n[dfcli] Installed libraries:\n')
|
|
18
|
+
|
|
19
|
+
if (entries.length === 0) {
|
|
20
|
+
console.log(' No libraries installed')
|
|
21
|
+
console.log(' Run: dfcli lib add <name>\n')
|
|
22
|
+
return
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
// Print each installed library
|
|
26
|
+
entries.forEach(entry => {
|
|
27
|
+
const installed = getInstalledVersion(entry.name)
|
|
28
|
+
const status = installed
|
|
29
|
+
? `✓ ${entry.name}@${installed}`
|
|
30
|
+
: `✗ ${entry.name}@${entry.version} (not downloaded)`
|
|
31
|
+
|
|
32
|
+
console.log(' ', status)
|
|
33
|
+
})
|
|
34
|
+
|
|
35
|
+
console.log(
|
|
36
|
+
`\n Total: ${entries.length} librar${
|
|
37
|
+
entries.length === 1 ? 'y' : 'ies'
|
|
38
|
+
}\n`
|
|
39
|
+
)
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
export { libList }
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
// remove.ts
|
|
2
|
+
// dfcli lib remove <name>
|
|
3
|
+
// Removes a library from libraries/ folder
|
|
4
|
+
// and updates addlibrary.ts.
|
|
5
|
+
|
|
6
|
+
import { uninstall } from '../../registry/installer'
|
|
7
|
+
import { removeFromManifest } from '../../registry/manifest'
|
|
8
|
+
import { isInstalled } from '../../registry/installer'
|
|
9
|
+
|
|
10
|
+
// Runs the lib remove command
|
|
11
|
+
// name — library name to remove e.g. 'charts'
|
|
12
|
+
async function libRemove(name: string): Promise<void> {
|
|
13
|
+
console.log(`\n[dfcli] Removing library: ${name}\n`)
|
|
14
|
+
|
|
15
|
+
// Check if installed
|
|
16
|
+
if (!isInstalled(name)) {
|
|
17
|
+
console.error(
|
|
18
|
+
`[dfcli] ✗ Library "${name}" is not installed`
|
|
19
|
+
)
|
|
20
|
+
process.exit(1)
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
// Remove from libraries/ folder
|
|
24
|
+
const removed = uninstall(name)
|
|
25
|
+
|
|
26
|
+
if (!removed) {
|
|
27
|
+
console.error(
|
|
28
|
+
`[dfcli] ✗ Failed to remove ${name}`
|
|
29
|
+
)
|
|
30
|
+
process.exit(1)
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
// Update addlibrary.ts
|
|
34
|
+
removeFromManifest(name)
|
|
35
|
+
|
|
36
|
+
console.log(`[dfcli] ✓ ${name} removed\n`)
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
export { libRemove }
|
|
@@ -0,0 +1,65 @@
|
|
|
1
|
+
// restore.ts
|
|
2
|
+
// dfcli lib restore
|
|
3
|
+
// Reinstalls all libraries listed in addlibrary.ts.
|
|
4
|
+
// Run this after cloning a project to get all libraries.
|
|
5
|
+
// Works like npm install but for DeskForge libraries.
|
|
6
|
+
|
|
7
|
+
import { readManifest } from '../../registry/manifest'
|
|
8
|
+
import { install } from '../../registry/installer'
|
|
9
|
+
import { isInstalled } from '../../registry/installer'
|
|
10
|
+
|
|
11
|
+
// Runs the lib restore command
|
|
12
|
+
async function libRestore(): Promise<void> {
|
|
13
|
+
const entries = readManifest()
|
|
14
|
+
|
|
15
|
+
console.log('\n[dfcli] Restoring libraries...\n')
|
|
16
|
+
|
|
17
|
+
if (entries.length === 0) {
|
|
18
|
+
console.log(
|
|
19
|
+
'[dfcli] No libraries in addlibrary.ts to restore'
|
|
20
|
+
)
|
|
21
|
+
return
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
let success = 0
|
|
25
|
+
let failed = 0
|
|
26
|
+
|
|
27
|
+
// Install each library from the manifest
|
|
28
|
+
for (const entry of entries) {
|
|
29
|
+
// Skip if already installed
|
|
30
|
+
if (isInstalled(entry.name)) {
|
|
31
|
+
console.log(
|
|
32
|
+
` ✓ ${entry.name}@${entry.version} already installed`
|
|
33
|
+
)
|
|
34
|
+
success++
|
|
35
|
+
continue
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
console.log(` Installing ${entry.name}...`)
|
|
39
|
+
|
|
40
|
+
const result = await install(entry.name)
|
|
41
|
+
|
|
42
|
+
if (result.success) {
|
|
43
|
+
console.log(
|
|
44
|
+
` ✓ ${entry.name}@${result.version} installed`
|
|
45
|
+
)
|
|
46
|
+
success++
|
|
47
|
+
} else {
|
|
48
|
+
console.error(
|
|
49
|
+
` ✗ ${entry.name} failed:`,
|
|
50
|
+
result.error
|
|
51
|
+
)
|
|
52
|
+
failed++
|
|
53
|
+
}
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
console.log(`
|
|
57
|
+
[dfcli] Restore complete:
|
|
58
|
+
✓ ${success} installed
|
|
59
|
+
✗ ${failed} failed
|
|
60
|
+
`)
|
|
61
|
+
|
|
62
|
+
if (failed > 0) process.exit(1)
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
export { libRestore }
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
// search.ts
|
|
2
|
+
// dfcli lib search <query>
|
|
3
|
+
// Searches the DeskForge library registry
|
|
4
|
+
// for libraries matching the query.
|
|
5
|
+
|
|
6
|
+
import { searchRegistry } from '../../registry/client'
|
|
7
|
+
|
|
8
|
+
// Runs the lib search command
|
|
9
|
+
// query — search term e.g. 'charts' or 'payments'
|
|
10
|
+
async function libSearch(query: string): Promise<void> {
|
|
11
|
+
console.log(`\n[dfcli] Searching registry for: ${query}\n`)
|
|
12
|
+
|
|
13
|
+
const results = await searchRegistry(query)
|
|
14
|
+
|
|
15
|
+
if (results.total === 0) {
|
|
16
|
+
console.log(
|
|
17
|
+
`[dfcli] No libraries found for "${query}"`
|
|
18
|
+
)
|
|
19
|
+
console.log(
|
|
20
|
+
'[dfcli] Browse all libraries at registry.deskforge.dev'
|
|
21
|
+
)
|
|
22
|
+
return
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
console.log(
|
|
26
|
+
`[dfcli] Found ${results.total} librar${
|
|
27
|
+
results.total === 1 ? 'y' : 'ies'
|
|
28
|
+
}:\n`
|
|
29
|
+
)
|
|
30
|
+
|
|
31
|
+
// Print each result
|
|
32
|
+
results.entries.forEach(entry => {
|
|
33
|
+
const size = Math.round(entry.size / 1024)
|
|
34
|
+
console.log(` ${entry.name}@${entry.version}`)
|
|
35
|
+
console.log(` ${entry.description}`)
|
|
36
|
+
console.log(` Size: ${size}KB | Types: included`)
|
|
37
|
+
console.log()
|
|
38
|
+
})
|
|
39
|
+
|
|
40
|
+
console.log(
|
|
41
|
+
`[dfcli] Install with: dfcli lib add <name>\n`
|
|
42
|
+
)
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
export { libSearch }
|
|
@@ -0,0 +1,117 @@
|
|
|
1
|
+
// start.ts
|
|
2
|
+
// dfcli start
|
|
3
|
+
// Starts the DeskForge development server.
|
|
4
|
+
// Reads app.ts for platform config.
|
|
5
|
+
// Enables hot reload — changes apply instantly.
|
|
6
|
+
// Opens a window for each declared platform.
|
|
7
|
+
|
|
8
|
+
import * as fs from 'fs'
|
|
9
|
+
import * as path from 'path'
|
|
10
|
+
import * as http from 'http'
|
|
11
|
+
import { spawn } from 'child_process'
|
|
12
|
+
|
|
13
|
+
// Development server configuration
|
|
14
|
+
interface StartConfig {
|
|
15
|
+
// Whether hot reload is enabled
|
|
16
|
+
hotReload: boolean
|
|
17
|
+
|
|
18
|
+
// Port for dev server communication
|
|
19
|
+
port: number
|
|
20
|
+
|
|
21
|
+
// Platform to start — defaults to all declared
|
|
22
|
+
platform?: string
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
// Finds the app entry file in current directory
|
|
26
|
+
function findEntryFile(): string | null {
|
|
27
|
+
const candidates = [
|
|
28
|
+
'app.ts',
|
|
29
|
+
]
|
|
30
|
+
|
|
31
|
+
for (const candidate of candidates) {
|
|
32
|
+
if (fs.existsSync(path.join(process.cwd(), candidate))) {
|
|
33
|
+
return candidate
|
|
34
|
+
}
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
return null
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
// Starts the development server
|
|
41
|
+
async function start(
|
|
42
|
+
config: StartConfig = { hotReload: true, port: 3040 }
|
|
43
|
+
): Promise<void> {
|
|
44
|
+
console.log('\n[dfcli] Starting DeskForge dev server...\n')
|
|
45
|
+
|
|
46
|
+
// Find entry file
|
|
47
|
+
const entryFile = findEntryFile()
|
|
48
|
+
|
|
49
|
+
if (!entryFile) {
|
|
50
|
+
console.error(
|
|
51
|
+
'[dfcli] ✗ No app.ts found'
|
|
52
|
+
)
|
|
53
|
+
console.error(
|
|
54
|
+
'[dfcli] Run dfcli create <name> to start a new project'
|
|
55
|
+
)
|
|
56
|
+
process.exit(1)
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
console.log(`[dfcli] ✓ Entry file: ${entryFile}`)
|
|
60
|
+
console.log(
|
|
61
|
+
`[dfcli] ✓ Hot reload: ${config.hotReload ? 'on' : 'off'}`
|
|
62
|
+
)
|
|
63
|
+
console.log(`[dfcli] ✓ Dev port: ${config.port}`)
|
|
64
|
+
|
|
65
|
+
// If the app declares a desktop platform, open a simple desktop window
|
|
66
|
+
try {
|
|
67
|
+
const content = fs.readFileSync(path.join(process.cwd(), entryFile), 'utf8')
|
|
68
|
+
const m = content.match(/platforms\s*:\s*\[([^\]]+)\]/)
|
|
69
|
+
const raw = m && m[1] ? m[1] : ''
|
|
70
|
+
const platforms = raw.split(',').map(s => s.replace(/['"\s]/g, '')).filter(Boolean)
|
|
71
|
+
if (platforms.includes('desktop')) {
|
|
72
|
+
const webPort = (config.port || 3040) + 1
|
|
73
|
+
const server = http.createServer((req, res) => {
|
|
74
|
+
res.writeHead(200, { 'Content-Type': 'text/html' })
|
|
75
|
+
const html = `<!doctype html><html><head><meta charset="utf-8"><title>${path.basename(process.cwd())}</title></head><body><h1>${path.basename(process.cwd())}</h1><p>DeskForge app running in dev mode on port ${config.port}.</p></body></html>`
|
|
76
|
+
res.end(html)
|
|
77
|
+
})
|
|
78
|
+
server.listen(webPort, () => {
|
|
79
|
+
console.log(`[dfcli] ✓ Desktop window served at http://localhost:${webPort}`)
|
|
80
|
+
// Open default browser as a lightweight native window
|
|
81
|
+
const opener = process.platform === 'darwin' ? 'open' : process.platform === 'win32' ? 'start' : 'xdg-open'
|
|
82
|
+
// Spawn via shell on Windows to use 'start'
|
|
83
|
+
if (process.platform === 'win32') {
|
|
84
|
+
spawn(opener, [`http://localhost:${webPort}`], { shell: true, stdio: 'ignore', detached: true }).unref()
|
|
85
|
+
} else {
|
|
86
|
+
spawn(opener, [`http://localhost:${webPort}`], { stdio: 'ignore', detached: true }).unref()
|
|
87
|
+
}
|
|
88
|
+
})
|
|
89
|
+
// clean up on exit
|
|
90
|
+
process.on('exit', () => server.close())
|
|
91
|
+
process.on('SIGINT', () => { server.close(); process.exit(0) })
|
|
92
|
+
}
|
|
93
|
+
} catch (err) {
|
|
94
|
+
// non-fatal
|
|
95
|
+
}
|
|
96
|
+
|
|
97
|
+
console.log('\n[dfcli] App running. Press Ctrl+C to stop.\n')
|
|
98
|
+
|
|
99
|
+
// In production this:
|
|
100
|
+
// 1. Compiles the entry file
|
|
101
|
+
// 2. Starts the QuickJS Brain
|
|
102
|
+
// 3. Opens the native window via Sovereign layer
|
|
103
|
+
// 4. Watches files for changes
|
|
104
|
+
// 5. Hot-reloads on save
|
|
105
|
+
|
|
106
|
+
// Keep process alive
|
|
107
|
+
process.on('SIGINT', () => {
|
|
108
|
+
console.log('\n[dfcli] Stopping dev server...')
|
|
109
|
+
process.exit(0)
|
|
110
|
+
})
|
|
111
|
+
|
|
112
|
+
// Block indefinitely in dev mode
|
|
113
|
+
await new Promise(() => {})
|
|
114
|
+
}
|
|
115
|
+
|
|
116
|
+
export type { StartConfig }
|
|
117
|
+
export { start, findEntryFile }
|
|
@@ -0,0 +1,224 @@
|
|
|
1
|
+
#!/usr/bin/env node
|
|
2
|
+
// index.ts
|
|
3
|
+
// Main entry point for the dfcli tool.
|
|
4
|
+
// Parses command line arguments and routes
|
|
5
|
+
// to the correct command handler.
|
|
6
|
+
// This file runs when developer types: dfcli <command>
|
|
7
|
+
|
|
8
|
+
import * as path from 'path'
|
|
9
|
+
import { create } from './commands/create'
|
|
10
|
+
import { start } from './commands/start'
|
|
11
|
+
import { build } from './commands/build'
|
|
12
|
+
import { libAdd } from './commands/lib/add'
|
|
13
|
+
import { libRemove } from './commands/lib/remove'
|
|
14
|
+
import { libList } from './commands/lib/list'
|
|
15
|
+
import { libRestore } from './commands/lib/restore'
|
|
16
|
+
import { libSearch } from './commands/lib/search'
|
|
17
|
+
|
|
18
|
+
// DeskForge CLI version
|
|
19
|
+
const VERSION = '1.0.0'
|
|
20
|
+
|
|
21
|
+
// Prints help information
|
|
22
|
+
function printHelp(): void {
|
|
23
|
+
console.log(`
|
|
24
|
+
DeskForge CLI v${VERSION}
|
|
25
|
+
Build everything. Own everything. Pay for nothing.
|
|
26
|
+
|
|
27
|
+
Usage:
|
|
28
|
+
dfcli <command> [options]
|
|
29
|
+
|
|
30
|
+
Commands:
|
|
31
|
+
create <name> Create a new DeskForge project
|
|
32
|
+
start Start development server
|
|
33
|
+
build Build for production
|
|
34
|
+
build --platform Build for specific platform
|
|
35
|
+
windows | mac | linux | ios | android
|
|
36
|
+
|
|
37
|
+
Library commands:
|
|
38
|
+
lib add <name> Install a library from registry
|
|
39
|
+
lib remove <name> Remove an installed library
|
|
40
|
+
lib list List all installed libraries
|
|
41
|
+
lib restore Reinstall all libraries from addlibrary.ts
|
|
42
|
+
lib search <query> Search the library registry
|
|
43
|
+
|
|
44
|
+
Options:
|
|
45
|
+
--help Show this help message
|
|
46
|
+
--version Show version number
|
|
47
|
+
|
|
48
|
+
Examples:
|
|
49
|
+
npx create-deskforge-app my-app
|
|
50
|
+
dfcli create my-app
|
|
51
|
+
dfcli start
|
|
52
|
+
dforge my-app start
|
|
53
|
+
dfcli build --platform windows
|
|
54
|
+
dfcli lib add charts
|
|
55
|
+
dfcli lib search payments
|
|
56
|
+
`)
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
// Main CLI entry point
|
|
60
|
+
async function main(): Promise<void> {
|
|
61
|
+
const args = process.argv.slice(2)
|
|
62
|
+
const invokedName = path.basename(process.argv[1] ?? 'dfcli').toLowerCase()
|
|
63
|
+
const command = args[0]
|
|
64
|
+
|
|
65
|
+
// No command — show help
|
|
66
|
+
if (!command || command === '--help' || command === '-h') {
|
|
67
|
+
printHelp()
|
|
68
|
+
return
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
if (invokedName === 'create-deskforge-app') {
|
|
72
|
+
const name = command
|
|
73
|
+
await create({
|
|
74
|
+
name: name || path.basename(process.cwd()),
|
|
75
|
+
typescript: true,
|
|
76
|
+
})
|
|
77
|
+
return
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
if (invokedName === 'dforge') {
|
|
81
|
+
const appName = command
|
|
82
|
+
const action = args[1] || 'start'
|
|
83
|
+
|
|
84
|
+
if (!appName) {
|
|
85
|
+
console.error('[dforge] ✗ App name required')
|
|
86
|
+
console.error('[dforge] Usage: dforge <appname> <start|build>')
|
|
87
|
+
process.exit(1)
|
|
88
|
+
}
|
|
89
|
+
|
|
90
|
+
const targetDir = path.resolve(process.cwd(), appName)
|
|
91
|
+
if (!require('fs').existsSync(targetDir)) {
|
|
92
|
+
console.error(`[dforge] ✗ Directory "${appName}" does not exist`)
|
|
93
|
+
process.exit(1)
|
|
94
|
+
}
|
|
95
|
+
|
|
96
|
+
process.chdir(targetDir)
|
|
97
|
+
|
|
98
|
+
if (action === 'build') {
|
|
99
|
+
await build({ platform: 'all' })
|
|
100
|
+
return
|
|
101
|
+
}
|
|
102
|
+
|
|
103
|
+
await start({ hotReload: true, port: 3040 })
|
|
104
|
+
return
|
|
105
|
+
}
|
|
106
|
+
|
|
107
|
+
// Version flag
|
|
108
|
+
if (command === '--version' || command === '-v') {
|
|
109
|
+
console.log(`dfcli v${VERSION}`)
|
|
110
|
+
return
|
|
111
|
+
}
|
|
112
|
+
|
|
113
|
+
// Route to command handler
|
|
114
|
+
switch (command) {
|
|
115
|
+
|
|
116
|
+
// dfcli create <name>
|
|
117
|
+
case 'create': {
|
|
118
|
+
const name = args[1]
|
|
119
|
+
|
|
120
|
+
if (!name) {
|
|
121
|
+
console.error('[dfcli] ✗ Project name required')
|
|
122
|
+
console.error('[dfcli] Usage: dfcli create <name>')
|
|
123
|
+
process.exit(1)
|
|
124
|
+
}
|
|
125
|
+
|
|
126
|
+
await create({
|
|
127
|
+
name,
|
|
128
|
+
typescript: true,
|
|
129
|
+
})
|
|
130
|
+
break
|
|
131
|
+
}
|
|
132
|
+
|
|
133
|
+
// dfcli start
|
|
134
|
+
case 'start': {
|
|
135
|
+
await start({ hotReload: true, port: 3040 })
|
|
136
|
+
break
|
|
137
|
+
}
|
|
138
|
+
|
|
139
|
+
// dfcli build
|
|
140
|
+
case 'build': {
|
|
141
|
+
const platformFlag = args.indexOf('--platform')
|
|
142
|
+
const platform = platformFlag !== -1
|
|
143
|
+
? args[platformFlag + 1]
|
|
144
|
+
: 'all'
|
|
145
|
+
|
|
146
|
+
await build({ platform: platform as 'all' })
|
|
147
|
+
break
|
|
148
|
+
}
|
|
149
|
+
|
|
150
|
+
// dfcli lib <subcommand>
|
|
151
|
+
case 'lib': {
|
|
152
|
+
const subcommand = args[1]
|
|
153
|
+
|
|
154
|
+
switch (subcommand) {
|
|
155
|
+
|
|
156
|
+
case 'add': {
|
|
157
|
+
const name = args[2]
|
|
158
|
+
if (!name) {
|
|
159
|
+
console.error('[dfcli] ✗ Library name required')
|
|
160
|
+
console.error('[dfcli] Usage: dfcli lib add <name>')
|
|
161
|
+
process.exit(1)
|
|
162
|
+
}
|
|
163
|
+
await libAdd(name)
|
|
164
|
+
break
|
|
165
|
+
}
|
|
166
|
+
|
|
167
|
+
case 'remove': {
|
|
168
|
+
const name = args[2]
|
|
169
|
+
if (!name) {
|
|
170
|
+
console.error('[dfcli] ✗ Library name required')
|
|
171
|
+
console.error('[dfcli] Usage: dfcli lib remove <name>')
|
|
172
|
+
process.exit(1)
|
|
173
|
+
}
|
|
174
|
+
await libRemove(name)
|
|
175
|
+
break
|
|
176
|
+
}
|
|
177
|
+
|
|
178
|
+
case 'list': {
|
|
179
|
+
libList()
|
|
180
|
+
break
|
|
181
|
+
}
|
|
182
|
+
|
|
183
|
+
case 'restore': {
|
|
184
|
+
await libRestore()
|
|
185
|
+
break
|
|
186
|
+
}
|
|
187
|
+
|
|
188
|
+
case 'search': {
|
|
189
|
+
const query = args[2]
|
|
190
|
+
if (!query) {
|
|
191
|
+
console.error('[dfcli] ✗ Search query required')
|
|
192
|
+
console.error('[dfcli] Usage: dfcli lib search <query>')
|
|
193
|
+
process.exit(1)
|
|
194
|
+
}
|
|
195
|
+
await libSearch(query)
|
|
196
|
+
break
|
|
197
|
+
}
|
|
198
|
+
|
|
199
|
+
default: {
|
|
200
|
+
console.error(
|
|
201
|
+
`[dfcli] ✗ Unknown lib command: ${subcommand}`
|
|
202
|
+
)
|
|
203
|
+
console.error(
|
|
204
|
+
'[dfcli] Run dfcli --help for usage'
|
|
205
|
+
)
|
|
206
|
+
process.exit(1)
|
|
207
|
+
}
|
|
208
|
+
}
|
|
209
|
+
break
|
|
210
|
+
}
|
|
211
|
+
|
|
212
|
+
default: {
|
|
213
|
+
console.error(`[dfcli] ✗ Unknown command: ${command}`)
|
|
214
|
+
console.error('[dfcli] Run dfcli --help for usage')
|
|
215
|
+
process.exit(1)
|
|
216
|
+
}
|
|
217
|
+
}
|
|
218
|
+
}
|
|
219
|
+
|
|
220
|
+
// Run the CLI
|
|
221
|
+
main().catch(error => {
|
|
222
|
+
console.error('[dfcli] Fatal error:', error)
|
|
223
|
+
process.exit(1)
|
|
224
|
+
})
|
|
@@ -0,0 +1,153 @@
|
|
|
1
|
+
// client.ts
|
|
2
|
+
// HTTP client for the DeskForge library registry.
|
|
3
|
+
// Contacts registry.deskforge.dev/lib/ to find
|
|
4
|
+
// and download libraries requested by the developer.
|
|
5
|
+
// All communication is simple GET requests.
|
|
6
|
+
// No authentication needed for public libraries.
|
|
7
|
+
|
|
8
|
+
// A library entry from the registry
|
|
9
|
+
interface RegistryEntry {
|
|
10
|
+
// Library name e.g. 'charts'
|
|
11
|
+
name: string
|
|
12
|
+
|
|
13
|
+
// Current version e.g. '1.2.0'
|
|
14
|
+
version: string
|
|
15
|
+
|
|
16
|
+
// Short description
|
|
17
|
+
description: string
|
|
18
|
+
|
|
19
|
+
// Download size in bytes
|
|
20
|
+
size: number
|
|
21
|
+
|
|
22
|
+
// Library author
|
|
23
|
+
author: string
|
|
24
|
+
|
|
25
|
+
// Whether types are included
|
|
26
|
+
// Always true for DeskForge libraries
|
|
27
|
+
typed: boolean
|
|
28
|
+
|
|
29
|
+
// Any libraries this depends on
|
|
30
|
+
// DeskForge libraries have zero external dependencies
|
|
31
|
+
dependencies: string[]
|
|
32
|
+
|
|
33
|
+
// Checksum for verifying download integrity
|
|
34
|
+
checksum: string
|
|
35
|
+
|
|
36
|
+
// Download URL
|
|
37
|
+
downloadUrl: string
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
// Search result from registry
|
|
41
|
+
interface SearchResult {
|
|
42
|
+
// Matching libraries
|
|
43
|
+
entries: RegistryEntry[]
|
|
44
|
+
|
|
45
|
+
// Total matches found
|
|
46
|
+
total: number
|
|
47
|
+
|
|
48
|
+
// Search query used
|
|
49
|
+
query: string
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
// Base URL of the DeskForge library registry
|
|
53
|
+
const REGISTRY_BASE = 'https://registry.deskforge.dev/lib'
|
|
54
|
+
|
|
55
|
+
// Fetches information about a specific library
|
|
56
|
+
// Returns null if library not found
|
|
57
|
+
async function fetchLibraryInfo(
|
|
58
|
+
name: string
|
|
59
|
+
): Promise<RegistryEntry | null> {
|
|
60
|
+
try {
|
|
61
|
+
console.log(
|
|
62
|
+
'[dfcli Registry] Fetching info for:',
|
|
63
|
+
name
|
|
64
|
+
)
|
|
65
|
+
|
|
66
|
+
// In production:
|
|
67
|
+
// GET https://registry.deskforge.dev/lib/charts
|
|
68
|
+
const url = `${REGISTRY_BASE}/${name}`
|
|
69
|
+
|
|
70
|
+
const response = await fetch(url)
|
|
71
|
+
|
|
72
|
+
if (!response.ok) {
|
|
73
|
+
if (response.status === 404) return null
|
|
74
|
+
throw new Error(`Registry error: ${response.status}`)
|
|
75
|
+
}
|
|
76
|
+
|
|
77
|
+
return response.json() as Promise<RegistryEntry>
|
|
78
|
+
|
|
79
|
+
} catch (error) {
|
|
80
|
+
console.error(
|
|
81
|
+
'[dfcli Registry] Failed to fetch:',
|
|
82
|
+
name, error
|
|
83
|
+
)
|
|
84
|
+
return null
|
|
85
|
+
}
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
// Searches the registry for libraries matching query
|
|
89
|
+
async function searchRegistry(
|
|
90
|
+
query: string
|
|
91
|
+
): Promise<SearchResult> {
|
|
92
|
+
try {
|
|
93
|
+
console.log('[dfcli Registry] Searching:', query)
|
|
94
|
+
|
|
95
|
+
// In production:
|
|
96
|
+
// GET https://registry.deskforge.dev/lib/search?q=charts
|
|
97
|
+
const url = `${REGISTRY_BASE}/search?q=${encodeURIComponent(query)}`
|
|
98
|
+
|
|
99
|
+
const response = await fetch(url)
|
|
100
|
+
|
|
101
|
+
if (!response.ok) {
|
|
102
|
+
throw new Error(`Registry error: ${response.status}`)
|
|
103
|
+
}
|
|
104
|
+
|
|
105
|
+
return response.json() as Promise<SearchResult>
|
|
106
|
+
|
|
107
|
+
} catch (error) {
|
|
108
|
+
console.error('[dfcli Registry] Search failed:', error)
|
|
109
|
+
return { entries: [], total: 0, query }
|
|
110
|
+
}
|
|
111
|
+
}
|
|
112
|
+
|
|
113
|
+
// Downloads a library package as a byte array
|
|
114
|
+
async function downloadLibrary(
|
|
115
|
+
entry: RegistryEntry
|
|
116
|
+
): Promise<Uint8Array> {
|
|
117
|
+
console.log(
|
|
118
|
+
'[dfcli Registry] Downloading:',
|
|
119
|
+
entry.name,
|
|
120
|
+
entry.version
|
|
121
|
+
)
|
|
122
|
+
|
|
123
|
+
const response = await fetch(entry.downloadUrl)
|
|
124
|
+
|
|
125
|
+
if (!response.ok) {
|
|
126
|
+
throw new Error(
|
|
127
|
+
`Download failed: ${response.status}`
|
|
128
|
+
)
|
|
129
|
+
}
|
|
130
|
+
|
|
131
|
+
const arrayBuffer = await response.arrayBuffer()
|
|
132
|
+
return new Uint8Array(arrayBuffer)
|
|
133
|
+
}
|
|
134
|
+
|
|
135
|
+
// Verifies downloaded library against checksum
|
|
136
|
+
function verifyChecksum(
|
|
137
|
+
data: Uint8Array,
|
|
138
|
+
expected: string
|
|
139
|
+
): boolean {
|
|
140
|
+
// In production this computes SHA256 of data
|
|
141
|
+
// and compares with expected checksum
|
|
142
|
+
console.log('[dfcli Registry] Verifying checksum')
|
|
143
|
+
return true
|
|
144
|
+
}
|
|
145
|
+
|
|
146
|
+
export type { RegistryEntry, SearchResult }
|
|
147
|
+
export {
|
|
148
|
+
fetchLibraryInfo,
|
|
149
|
+
searchRegistry,
|
|
150
|
+
downloadLibrary,
|
|
151
|
+
verifyChecksum,
|
|
152
|
+
REGISTRY_BASE,
|
|
153
|
+
}
|