create-blocklet 0.9.16 → 0.9.18
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/index.js +5 -0
- package/package.json +1 -1
- package/templates/did-connect-dapp/api/hooks/pre-start.js +3 -26
- package/templates/did-connect-dapp/package.json +1 -1
- package/templates/did-wallet-dapp/package.json +1 -1
- package/templates/react-aigne-dapp/.eslintrc.js +13 -0
- package/templates/react-aigne-dapp/README.md +34 -0
- package/templates/react-aigne-dapp/api/dev.ts +7 -0
- package/templates/react-aigne-dapp/api/src/agents/chatbot.ts +30 -0
- package/templates/react-aigne-dapp/api/src/agents/index.ts +1 -0
- package/templates/react-aigne-dapp/api/src/agents/runtime.ts +16 -0
- package/templates/react-aigne-dapp/api/src/agents/type.ts +4 -0
- package/templates/react-aigne-dapp/api/src/index.ts +51 -0
- package/templates/react-aigne-dapp/api/src/libs/auth.ts +17 -0
- package/templates/react-aigne-dapp/api/src/libs/env.ts +6 -0
- package/templates/react-aigne-dapp/api/src/libs/logger.ts +3 -0
- package/templates/react-aigne-dapp/api/third.d.ts +17 -0
- package/templates/react-aigne-dapp/blocklet.md +3 -0
- package/templates/react-aigne-dapp/blocklet.yml +55 -0
- package/templates/react-aigne-dapp/index.html +17 -0
- package/templates/react-aigne-dapp/package.json +122 -0
- package/templates/react-aigne-dapp/src/app.tsx +28 -0
- package/templates/react-aigne-dapp/src/assets/blocklet.svg +16 -0
- package/templates/react-aigne-dapp/src/components/MarkdownRenderer/index.tsx +102 -0
- package/templates/react-aigne-dapp/src/components/ScrollView.tsx +95 -0
- package/templates/react-aigne-dapp/src/contexts/session.tsx +11 -0
- package/templates/react-aigne-dapp/src/env.d.ts +3 -0
- package/templates/react-aigne-dapp/src/index.css +66 -0
- package/templates/react-aigne-dapp/src/index.tsx +8 -0
- package/templates/react-aigne-dapp/src/pages/home.css +44 -0
- package/templates/react-aigne-dapp/src/pages/home.tsx +183 -0
- package/templates/react-aigne-dapp/template-info.json +12 -0
- package/templates/react-aigne-dapp/tsconfig.api.json +12 -0
- package/templates/react-aigne-dapp/tsconfig.eslint.json +9 -0
- package/templates/react-aigne-dapp/tsconfig.json +102 -0
- package/templates/react-aigne-dapp/vite.config.mts +19 -0
- package/templates/react-dapp/package.json +1 -1
- package/templates/react-dapp-ts/package.json +1 -1
- package/templates/react-gun-dapp/package.json +1 -1
- package/templates/react-static/package.json +1 -1
- package/templates/solidjs-dapp/package.json +1 -1
- package/templates/solidjs-static/package.json +1 -1
- package/templates/svelte-dapp/package.json +1 -1
- package/templates/svelte-static/package.json +1 -1
- package/templates/todo-list-example/package.json +1 -1
- package/templates/vue-dapp/package.json +1 -1
- package/templates/vue-static/package.json +1 -1
- package/templates/vue-ts-static/package.json +1 -1
- package/templates/vue2-dapp/package.json +1 -1
- package/templates/vue2-static/package.json +1 -1