├── .eslintrc.cjs ├── .github ├── dependabot.yml └── workflows │ ├── ci.yml │ └── pages.yml ├── .gitignore ├── .vscode ├── launch.json ├── settings.json └── tasks.json ├── CODE_OF_CONDUCT.md ├── LICENSE ├── README.md ├── cypress.config.ts ├── cypress ├── .gitignore ├── e2e │ ├── 1-generate │ │ └── generate.cy.ts │ └── 2-actions │ │ ├── bookmark.cy.ts │ │ └── copy.cy.ts ├── support │ ├── commands.ts │ └── e2e.ts └── tsconfig.json ├── index.html ├── package.json ├── prettier.config.mjs ├── public ├── favicon.ico └── manifest.json ├── src ├── App.module.css ├── App.tsx ├── DisplayNpc.module.css ├── DisplayNpc.tsx ├── Footer.module.css ├── Footer.tsx ├── NpcData.module.css ├── NpcData.tsx ├── NpcHistory.module.css ├── NpcHistory.tsx ├── UserInput.module.css ├── UserInput.tsx ├── browserStorage.ts ├── core │ └── classSet.ts ├── images │ ├── BW_Header_Capsule.jpg │ ├── GMLogo.png │ ├── bg1.jpg │ ├── bg11.jpg │ ├── bg3.jpg │ ├── bgdragon.jpg │ ├── emd.png │ └── npcgenerator.png ├── main.tsx ├── typings.d.ts ├── useNpcHistory.ts └── vite-env.d.ts ├── tsconfig.json └── vite.config.ts /.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cellule/dndGenerator/HEAD/.eslintrc.cjs -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cellule/dndGenerator/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cellule/dndGenerator/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/pages.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cellule/dndGenerator/HEAD/.github/workflows/pages.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cellule/dndGenerator/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cellule/dndGenerator/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cellule/dndGenerator/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cellule/dndGenerator/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cellule/dndGenerator/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cellule/dndGenerator/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cellule/dndGenerator/HEAD/README.md -------------------------------------------------------------------------------- /cypress.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cellule/dndGenerator/HEAD/cypress.config.ts -------------------------------------------------------------------------------- /cypress/.gitignore: -------------------------------------------------------------------------------- 1 | screenshots/ 2 | videos/ -------------------------------------------------------------------------------- /cypress/e2e/1-generate/generate.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cellule/dndGenerator/HEAD/cypress/e2e/1-generate/generate.cy.ts -------------------------------------------------------------------------------- /cypress/e2e/2-actions/bookmark.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cellule/dndGenerator/HEAD/cypress/e2e/2-actions/bookmark.cy.ts -------------------------------------------------------------------------------- /cypress/e2e/2-actions/copy.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cellule/dndGenerator/HEAD/cypress/e2e/2-actions/copy.cy.ts -------------------------------------------------------------------------------- /cypress/support/commands.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cellule/dndGenerator/HEAD/cypress/support/commands.ts -------------------------------------------------------------------------------- /cypress/support/e2e.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cellule/dndGenerator/HEAD/cypress/support/e2e.ts -------------------------------------------------------------------------------- /cypress/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cellule/dndGenerator/HEAD/cypress/tsconfig.json -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cellule/dndGenerator/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cellule/dndGenerator/HEAD/package.json -------------------------------------------------------------------------------- /prettier.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cellule/dndGenerator/HEAD/prettier.config.mjs -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cellule/dndGenerator/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cellule/dndGenerator/HEAD/public/manifest.json -------------------------------------------------------------------------------- /src/App.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cellule/dndGenerator/HEAD/src/App.module.css -------------------------------------------------------------------------------- /src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cellule/dndGenerator/HEAD/src/App.tsx -------------------------------------------------------------------------------- /src/DisplayNpc.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cellule/dndGenerator/HEAD/src/DisplayNpc.module.css -------------------------------------------------------------------------------- /src/DisplayNpc.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cellule/dndGenerator/HEAD/src/DisplayNpc.tsx -------------------------------------------------------------------------------- /src/Footer.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cellule/dndGenerator/HEAD/src/Footer.module.css -------------------------------------------------------------------------------- /src/Footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cellule/dndGenerator/HEAD/src/Footer.tsx -------------------------------------------------------------------------------- /src/NpcData.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cellule/dndGenerator/HEAD/src/NpcData.module.css -------------------------------------------------------------------------------- /src/NpcData.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cellule/dndGenerator/HEAD/src/NpcData.tsx -------------------------------------------------------------------------------- /src/NpcHistory.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cellule/dndGenerator/HEAD/src/NpcHistory.module.css -------------------------------------------------------------------------------- /src/NpcHistory.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cellule/dndGenerator/HEAD/src/NpcHistory.tsx -------------------------------------------------------------------------------- /src/UserInput.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cellule/dndGenerator/HEAD/src/UserInput.module.css -------------------------------------------------------------------------------- /src/UserInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cellule/dndGenerator/HEAD/src/UserInput.tsx -------------------------------------------------------------------------------- /src/browserStorage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cellule/dndGenerator/HEAD/src/browserStorage.ts -------------------------------------------------------------------------------- /src/core/classSet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cellule/dndGenerator/HEAD/src/core/classSet.ts -------------------------------------------------------------------------------- /src/images/BW_Header_Capsule.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cellule/dndGenerator/HEAD/src/images/BW_Header_Capsule.jpg -------------------------------------------------------------------------------- /src/images/GMLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cellule/dndGenerator/HEAD/src/images/GMLogo.png -------------------------------------------------------------------------------- /src/images/bg1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cellule/dndGenerator/HEAD/src/images/bg1.jpg -------------------------------------------------------------------------------- /src/images/bg11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cellule/dndGenerator/HEAD/src/images/bg11.jpg -------------------------------------------------------------------------------- /src/images/bg3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cellule/dndGenerator/HEAD/src/images/bg3.jpg -------------------------------------------------------------------------------- /src/images/bgdragon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cellule/dndGenerator/HEAD/src/images/bgdragon.jpg -------------------------------------------------------------------------------- /src/images/emd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cellule/dndGenerator/HEAD/src/images/emd.png -------------------------------------------------------------------------------- /src/images/npcgenerator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cellule/dndGenerator/HEAD/src/images/npcgenerator.png -------------------------------------------------------------------------------- /src/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cellule/dndGenerator/HEAD/src/main.tsx -------------------------------------------------------------------------------- /src/typings.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cellule/dndGenerator/HEAD/src/typings.d.ts -------------------------------------------------------------------------------- /src/useNpcHistory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cellule/dndGenerator/HEAD/src/useNpcHistory.ts -------------------------------------------------------------------------------- /src/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cellule/dndGenerator/HEAD/tsconfig.json -------------------------------------------------------------------------------- /vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cellule/dndGenerator/HEAD/vite.config.ts --------------------------------------------------------------------------------