├── .appcast.xml ├── .github └── FUNDING.yml ├── .gitignore ├── Procfile ├── README.md ├── assets └── icon.png ├── backend ├── .eslintrc.yml ├── .gitignore ├── lib │ ├── handler.ts │ ├── sent-message.ts │ └── storage.ts ├── package-lock.json ├── package.json ├── tsconfig.json ├── types │ └── graphql.d.ts └── webpack.config.js ├── package.json ├── resources ├── style.css ├── webview.html └── webview.js ├── sketch-assets ├── Sketch-Chat.gif └── icons.sketch ├── src ├── manifest.json └── my-command.js ├── tsconfig.json └── webpack.skpm.config.js /.appcast.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathieudutour/sketch-chat/HEAD/.appcast.xml -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathieudutour/sketch-chat/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathieudutour/sketch-chat/HEAD/.gitignore -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | web: cd backend && node ./.webpack/main.js 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathieudutour/sketch-chat/HEAD/README.md -------------------------------------------------------------------------------- /assets/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathieudutour/sketch-chat/HEAD/assets/icon.png -------------------------------------------------------------------------------- /backend/.eslintrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathieudutour/sketch-chat/HEAD/backend/.eslintrc.yml -------------------------------------------------------------------------------- /backend/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathieudutour/sketch-chat/HEAD/backend/.gitignore -------------------------------------------------------------------------------- /backend/lib/handler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathieudutour/sketch-chat/HEAD/backend/lib/handler.ts -------------------------------------------------------------------------------- /backend/lib/sent-message.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathieudutour/sketch-chat/HEAD/backend/lib/sent-message.ts -------------------------------------------------------------------------------- /backend/lib/storage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathieudutour/sketch-chat/HEAD/backend/lib/storage.ts -------------------------------------------------------------------------------- /backend/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathieudutour/sketch-chat/HEAD/backend/package-lock.json -------------------------------------------------------------------------------- /backend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathieudutour/sketch-chat/HEAD/backend/package.json -------------------------------------------------------------------------------- /backend/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathieudutour/sketch-chat/HEAD/backend/tsconfig.json -------------------------------------------------------------------------------- /backend/types/graphql.d.ts: -------------------------------------------------------------------------------- 1 | declare module '*.graphql' 2 | -------------------------------------------------------------------------------- /backend/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathieudutour/sketch-chat/HEAD/backend/webpack.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathieudutour/sketch-chat/HEAD/package.json -------------------------------------------------------------------------------- /resources/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathieudutour/sketch-chat/HEAD/resources/style.css -------------------------------------------------------------------------------- /resources/webview.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathieudutour/sketch-chat/HEAD/resources/webview.html -------------------------------------------------------------------------------- /resources/webview.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathieudutour/sketch-chat/HEAD/resources/webview.js -------------------------------------------------------------------------------- /sketch-assets/Sketch-Chat.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathieudutour/sketch-chat/HEAD/sketch-assets/Sketch-Chat.gif -------------------------------------------------------------------------------- /sketch-assets/icons.sketch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathieudutour/sketch-chat/HEAD/sketch-assets/icons.sketch -------------------------------------------------------------------------------- /src/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathieudutour/sketch-chat/HEAD/src/manifest.json -------------------------------------------------------------------------------- /src/my-command.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathieudutour/sketch-chat/HEAD/src/my-command.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathieudutour/sketch-chat/HEAD/tsconfig.json -------------------------------------------------------------------------------- /webpack.skpm.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathieudutour/sketch-chat/HEAD/webpack.skpm.config.js --------------------------------------------------------------------------------