├── .gitignore ├── .npmignore ├── LICENSE ├── README.md ├── aitext.d.ts ├── dist ├── aitext.mjs └── aitext.umd.js ├── package.json ├── src ├── index.ts └── lib.ts ├── tsconfig.json └── vite.config.ts /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/* 2 | npm-debug.log 3 | .idea/ 4 | .DS_Store -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | src/ 3 | vite.config.js 4 | yarn.lock -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etozhealkhipce/editorjs-aitext/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etozhealkhipce/editorjs-aitext/HEAD/README.md -------------------------------------------------------------------------------- /aitext.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etozhealkhipce/editorjs-aitext/HEAD/aitext.d.ts -------------------------------------------------------------------------------- /dist/aitext.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etozhealkhipce/editorjs-aitext/HEAD/dist/aitext.mjs -------------------------------------------------------------------------------- /dist/aitext.umd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etozhealkhipce/editorjs-aitext/HEAD/dist/aitext.umd.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etozhealkhipce/editorjs-aitext/HEAD/package.json -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etozhealkhipce/editorjs-aitext/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/lib.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etozhealkhipce/editorjs-aitext/HEAD/src/lib.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etozhealkhipce/editorjs-aitext/HEAD/tsconfig.json -------------------------------------------------------------------------------- /vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etozhealkhipce/editorjs-aitext/HEAD/vite.config.ts --------------------------------------------------------------------------------