A simple and free graphic editor for novice artists
This project is implemented following the Feature-Sliced Design methodology.
Disclaimer: the project was originally implemented using Svelte 3. The initial version of the source code can be found here.
There is a single main page.
.npmrc file in the root directory with given contents:@rastrr-editor:registry=https://npm.pkg.github.com
//npm.pkg.github.com/:_authToken=<PERSONAL ACCESS TOKEN WITH read:packages SCOPE>
npm inpm run devnpm run format - format code using prettiernpm run check - check code for svelte errorsnpm run format:check - check formatting errorsnpm run build - build projectnpm run preview - launch built projectnpm run lint - lint codeAdd this to .vscode/settings.json:
{
"editor.tabSize": 2,
"typescript.tsdk": "node_modules\\typescript\\lib",
"editor.defaultFormatter": "esbenp.prettier-vscode",
"svelte.enable-ts-plugin": true
}