├── .github ├── renovate.json └── workflows │ ├── autofix.yml │ ├── ci.yml │ ├── issuebot.yml │ └── release.yml ├── .gitignore ├── .husky └── pre-commit ├── .vscode └── settings.json ├── LICENSE ├── README.md ├── bin └── zotero-plugin.mjs ├── docs ├── README.md ├── package.json ├── src │ ├── .vitepress │ │ ├── config.ts │ │ └── theme │ │ │ └── index.ts │ ├── build.md │ ├── eslint.md │ ├── index.md │ ├── quick-start.md │ ├── release.md │ ├── serve.md │ ├── test.md │ └── why.md └── tsconfig.json ├── eslint.config.js ├── package.json ├── pnpm-lock.yaml ├── pnpm-workspace.yaml ├── src ├── cli.ts ├── config.ts ├── constant.ts ├── core │ ├── base.ts │ ├── builder │ │ ├── assets.ts │ │ ├── clean.ts │ │ ├── esbuild.ts │ │ ├── fluent.test.ts │ │ ├── fluent.ts │ │ ├── index.ts │ │ ├── manifest.ts │ │ ├── prefs.test.ts │ │ ├── prefs.ts │ │ ├── replace.ts │ │ ├── report.ts │ │ ├── update-json.ts │ │ └── zip.ts │ ├── linter.ts │ ├── releaser │ │ ├── base.ts │ │ ├── bump.ts │ │ ├── changelog.ts │ │ ├── github.ts │ │ ├── index.ts │ │ └── zotero.ts │ ├── server.ts │ └── tester │ │ ├── headless.ts │ │ ├── http-reporter.ts │ │ ├── index.ts │ │ ├── test-bundler-template │ │ ├── bootsrtap.ts │ │ ├── html.ts │ │ ├── index.ts │ │ ├── manifest.ts │ │ └── mocha-setup.ts │ │ ├── test-bundler.test.ts │ │ └── test-bundler.ts ├── index.ts ├── types │ ├── config.ts │ ├── env.d.ts │ ├── index.ts │ ├── manifest.ts │ ├── update-json.ts │ └── utils.ts ├── utils │ ├── file.ts │ ├── gitignore.ts │ ├── logger.ts │ ├── mime.test.ts │ ├── mime.ts │ ├── number.ts │ ├── prefs-manager.test.ts │ ├── prefs-manager.ts │ ├── process.ts │ ├── string.ts │ ├── updater.ts │ ├── watcher.ts │ ├── zotero-runner.ts │ └── zotero │ │ ├── preference.ts │ │ ├── rdp-client.ts │ │ └── remote-zotero.ts └── vendor │ └── index.ts ├── test └── e2e │ ├── fixtures │ ├── build.ts │ ├── package.json │ └── static │ │ ├── locale │ │ └── en-US │ │ │ └── prefs.ftl │ │ ├── manifest.json │ │ ├── preference.xhtml │ │ └── prefs.js │ ├── snap │ ├── dist │ │ ├── addon │ │ │ ├── locale │ │ │ │ └── en-US │ │ │ │ │ └── test-plugin-prefs.ftl │ │ │ ├── manifest.json │ │ │ ├── preference.xhtml │ │ │ └── prefs.js │ │ ├── update-beta.json │ │ └── update.json │ └── typings │ │ ├── i10n.d.ts │ │ └── prefs.d.ts │ └── tests │ └── build.test.ts ├── tsconfig.json ├── typings └── commander.d.ts └── vitest.config.ts /.github/renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero-plugin-dev/zotero-plugin-scaffold/HEAD/.github/renovate.json -------------------------------------------------------------------------------- /.github/workflows/autofix.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero-plugin-dev/zotero-plugin-scaffold/HEAD/.github/workflows/autofix.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero-plugin-dev/zotero-plugin-scaffold/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/issuebot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero-plugin-dev/zotero-plugin-scaffold/HEAD/.github/workflows/issuebot.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero-plugin-dev/zotero-plugin-scaffold/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero-plugin-dev/zotero-plugin-scaffold/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- 1 | npx lint-staged 2 | -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero-plugin-dev/zotero-plugin-scaffold/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero-plugin-dev/zotero-plugin-scaffold/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero-plugin-dev/zotero-plugin-scaffold/HEAD/README.md -------------------------------------------------------------------------------- /bin/zotero-plugin.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero-plugin-dev/zotero-plugin-scaffold/HEAD/bin/zotero-plugin.mjs -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero-plugin-dev/zotero-plugin-scaffold/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero-plugin-dev/zotero-plugin-scaffold/HEAD/docs/package.json -------------------------------------------------------------------------------- /docs/src/.vitepress/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero-plugin-dev/zotero-plugin-scaffold/HEAD/docs/src/.vitepress/config.ts -------------------------------------------------------------------------------- /docs/src/.vitepress/theme/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero-plugin-dev/zotero-plugin-scaffold/HEAD/docs/src/.vitepress/theme/index.ts -------------------------------------------------------------------------------- /docs/src/build.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero-plugin-dev/zotero-plugin-scaffold/HEAD/docs/src/build.md -------------------------------------------------------------------------------- /docs/src/eslint.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero-plugin-dev/zotero-plugin-scaffold/HEAD/docs/src/eslint.md -------------------------------------------------------------------------------- /docs/src/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero-plugin-dev/zotero-plugin-scaffold/HEAD/docs/src/index.md -------------------------------------------------------------------------------- /docs/src/quick-start.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero-plugin-dev/zotero-plugin-scaffold/HEAD/docs/src/quick-start.md -------------------------------------------------------------------------------- /docs/src/release.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero-plugin-dev/zotero-plugin-scaffold/HEAD/docs/src/release.md -------------------------------------------------------------------------------- /docs/src/serve.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero-plugin-dev/zotero-plugin-scaffold/HEAD/docs/src/serve.md -------------------------------------------------------------------------------- /docs/src/test.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero-plugin-dev/zotero-plugin-scaffold/HEAD/docs/src/test.md -------------------------------------------------------------------------------- /docs/src/why.md: -------------------------------------------------------------------------------- 1 | # Why Scaffold? 2 | 3 | Documentation is not yet complete. 4 | -------------------------------------------------------------------------------- /docs/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero-plugin-dev/zotero-plugin-scaffold/HEAD/docs/tsconfig.json -------------------------------------------------------------------------------- /eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero-plugin-dev/zotero-plugin-scaffold/HEAD/eslint.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero-plugin-dev/zotero-plugin-scaffold/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero-plugin-dev/zotero-plugin-scaffold/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /pnpm-workspace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero-plugin-dev/zotero-plugin-scaffold/HEAD/pnpm-workspace.yaml -------------------------------------------------------------------------------- /src/cli.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero-plugin-dev/zotero-plugin-scaffold/HEAD/src/cli.ts -------------------------------------------------------------------------------- /src/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero-plugin-dev/zotero-plugin-scaffold/HEAD/src/config.ts -------------------------------------------------------------------------------- /src/constant.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero-plugin-dev/zotero-plugin-scaffold/HEAD/src/constant.ts -------------------------------------------------------------------------------- /src/core/base.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero-plugin-dev/zotero-plugin-scaffold/HEAD/src/core/base.ts -------------------------------------------------------------------------------- /src/core/builder/assets.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero-plugin-dev/zotero-plugin-scaffold/HEAD/src/core/builder/assets.ts -------------------------------------------------------------------------------- /src/core/builder/clean.ts: -------------------------------------------------------------------------------- 1 | export default async function clean() { 2 | // 3 | } 4 | -------------------------------------------------------------------------------- /src/core/builder/esbuild.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero-plugin-dev/zotero-plugin-scaffold/HEAD/src/core/builder/esbuild.ts -------------------------------------------------------------------------------- /src/core/builder/fluent.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero-plugin-dev/zotero-plugin-scaffold/HEAD/src/core/builder/fluent.test.ts -------------------------------------------------------------------------------- /src/core/builder/fluent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero-plugin-dev/zotero-plugin-scaffold/HEAD/src/core/builder/fluent.ts -------------------------------------------------------------------------------- /src/core/builder/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero-plugin-dev/zotero-plugin-scaffold/HEAD/src/core/builder/index.ts -------------------------------------------------------------------------------- /src/core/builder/manifest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero-plugin-dev/zotero-plugin-scaffold/HEAD/src/core/builder/manifest.ts -------------------------------------------------------------------------------- /src/core/builder/prefs.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero-plugin-dev/zotero-plugin-scaffold/HEAD/src/core/builder/prefs.test.ts -------------------------------------------------------------------------------- /src/core/builder/prefs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero-plugin-dev/zotero-plugin-scaffold/HEAD/src/core/builder/prefs.ts -------------------------------------------------------------------------------- /src/core/builder/replace.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero-plugin-dev/zotero-plugin-scaffold/HEAD/src/core/builder/replace.ts -------------------------------------------------------------------------------- /src/core/builder/report.ts: -------------------------------------------------------------------------------- 1 | // report to developer the plugin size/chunks 2 | -------------------------------------------------------------------------------- /src/core/builder/update-json.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero-plugin-dev/zotero-plugin-scaffold/HEAD/src/core/builder/update-json.ts -------------------------------------------------------------------------------- /src/core/builder/zip.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero-plugin-dev/zotero-plugin-scaffold/HEAD/src/core/builder/zip.ts -------------------------------------------------------------------------------- /src/core/linter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero-plugin-dev/zotero-plugin-scaffold/HEAD/src/core/linter.ts -------------------------------------------------------------------------------- /src/core/releaser/base.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero-plugin-dev/zotero-plugin-scaffold/HEAD/src/core/releaser/base.ts -------------------------------------------------------------------------------- /src/core/releaser/bump.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero-plugin-dev/zotero-plugin-scaffold/HEAD/src/core/releaser/bump.ts -------------------------------------------------------------------------------- /src/core/releaser/changelog.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero-plugin-dev/zotero-plugin-scaffold/HEAD/src/core/releaser/changelog.ts -------------------------------------------------------------------------------- /src/core/releaser/github.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero-plugin-dev/zotero-plugin-scaffold/HEAD/src/core/releaser/github.ts -------------------------------------------------------------------------------- /src/core/releaser/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero-plugin-dev/zotero-plugin-scaffold/HEAD/src/core/releaser/index.ts -------------------------------------------------------------------------------- /src/core/releaser/zotero.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero-plugin-dev/zotero-plugin-scaffold/HEAD/src/core/releaser/zotero.ts -------------------------------------------------------------------------------- /src/core/server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero-plugin-dev/zotero-plugin-scaffold/HEAD/src/core/server.ts -------------------------------------------------------------------------------- /src/core/tester/headless.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero-plugin-dev/zotero-plugin-scaffold/HEAD/src/core/tester/headless.ts -------------------------------------------------------------------------------- /src/core/tester/http-reporter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero-plugin-dev/zotero-plugin-scaffold/HEAD/src/core/tester/http-reporter.ts -------------------------------------------------------------------------------- /src/core/tester/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero-plugin-dev/zotero-plugin-scaffold/HEAD/src/core/tester/index.ts -------------------------------------------------------------------------------- /src/core/tester/test-bundler-template/bootsrtap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero-plugin-dev/zotero-plugin-scaffold/HEAD/src/core/tester/test-bundler-template/bootsrtap.ts -------------------------------------------------------------------------------- /src/core/tester/test-bundler-template/html.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero-plugin-dev/zotero-plugin-scaffold/HEAD/src/core/tester/test-bundler-template/html.ts -------------------------------------------------------------------------------- /src/core/tester/test-bundler-template/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero-plugin-dev/zotero-plugin-scaffold/HEAD/src/core/tester/test-bundler-template/index.ts -------------------------------------------------------------------------------- /src/core/tester/test-bundler-template/manifest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero-plugin-dev/zotero-plugin-scaffold/HEAD/src/core/tester/test-bundler-template/manifest.ts -------------------------------------------------------------------------------- /src/core/tester/test-bundler-template/mocha-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero-plugin-dev/zotero-plugin-scaffold/HEAD/src/core/tester/test-bundler-template/mocha-setup.ts -------------------------------------------------------------------------------- /src/core/tester/test-bundler.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero-plugin-dev/zotero-plugin-scaffold/HEAD/src/core/tester/test-bundler.test.ts -------------------------------------------------------------------------------- /src/core/tester/test-bundler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero-plugin-dev/zotero-plugin-scaffold/HEAD/src/core/tester/test-bundler.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero-plugin-dev/zotero-plugin-scaffold/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/types/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero-plugin-dev/zotero-plugin-scaffold/HEAD/src/types/config.ts -------------------------------------------------------------------------------- /src/types/env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero-plugin-dev/zotero-plugin-scaffold/HEAD/src/types/env.d.ts -------------------------------------------------------------------------------- /src/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero-plugin-dev/zotero-plugin-scaffold/HEAD/src/types/index.ts -------------------------------------------------------------------------------- /src/types/manifest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero-plugin-dev/zotero-plugin-scaffold/HEAD/src/types/manifest.ts -------------------------------------------------------------------------------- /src/types/update-json.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero-plugin-dev/zotero-plugin-scaffold/HEAD/src/types/update-json.ts -------------------------------------------------------------------------------- /src/types/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero-plugin-dev/zotero-plugin-scaffold/HEAD/src/types/utils.ts -------------------------------------------------------------------------------- /src/utils/file.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero-plugin-dev/zotero-plugin-scaffold/HEAD/src/utils/file.ts -------------------------------------------------------------------------------- /src/utils/gitignore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero-plugin-dev/zotero-plugin-scaffold/HEAD/src/utils/gitignore.ts -------------------------------------------------------------------------------- /src/utils/logger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero-plugin-dev/zotero-plugin-scaffold/HEAD/src/utils/logger.ts -------------------------------------------------------------------------------- /src/utils/mime.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero-plugin-dev/zotero-plugin-scaffold/HEAD/src/utils/mime.test.ts -------------------------------------------------------------------------------- /src/utils/mime.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero-plugin-dev/zotero-plugin-scaffold/HEAD/src/utils/mime.ts -------------------------------------------------------------------------------- /src/utils/number.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero-plugin-dev/zotero-plugin-scaffold/HEAD/src/utils/number.ts -------------------------------------------------------------------------------- /src/utils/prefs-manager.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero-plugin-dev/zotero-plugin-scaffold/HEAD/src/utils/prefs-manager.test.ts -------------------------------------------------------------------------------- /src/utils/prefs-manager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero-plugin-dev/zotero-plugin-scaffold/HEAD/src/utils/prefs-manager.ts -------------------------------------------------------------------------------- /src/utils/process.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero-plugin-dev/zotero-plugin-scaffold/HEAD/src/utils/process.ts -------------------------------------------------------------------------------- /src/utils/string.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero-plugin-dev/zotero-plugin-scaffold/HEAD/src/utils/string.ts -------------------------------------------------------------------------------- /src/utils/updater.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero-plugin-dev/zotero-plugin-scaffold/HEAD/src/utils/updater.ts -------------------------------------------------------------------------------- /src/utils/watcher.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero-plugin-dev/zotero-plugin-scaffold/HEAD/src/utils/watcher.ts -------------------------------------------------------------------------------- /src/utils/zotero-runner.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero-plugin-dev/zotero-plugin-scaffold/HEAD/src/utils/zotero-runner.ts -------------------------------------------------------------------------------- /src/utils/zotero/preference.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero-plugin-dev/zotero-plugin-scaffold/HEAD/src/utils/zotero/preference.ts -------------------------------------------------------------------------------- /src/utils/zotero/rdp-client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero-plugin-dev/zotero-plugin-scaffold/HEAD/src/utils/zotero/rdp-client.ts -------------------------------------------------------------------------------- /src/utils/zotero/remote-zotero.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero-plugin-dev/zotero-plugin-scaffold/HEAD/src/utils/zotero/remote-zotero.ts -------------------------------------------------------------------------------- /src/vendor/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero-plugin-dev/zotero-plugin-scaffold/HEAD/src/vendor/index.ts -------------------------------------------------------------------------------- /test/e2e/fixtures/build.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero-plugin-dev/zotero-plugin-scaffold/HEAD/test/e2e/fixtures/build.ts -------------------------------------------------------------------------------- /test/e2e/fixtures/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero-plugin-dev/zotero-plugin-scaffold/HEAD/test/e2e/fixtures/package.json -------------------------------------------------------------------------------- /test/e2e/fixtures/static/locale/en-US/prefs.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero-plugin-dev/zotero-plugin-scaffold/HEAD/test/e2e/fixtures/static/locale/en-US/prefs.ftl -------------------------------------------------------------------------------- /test/e2e/fixtures/static/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero-plugin-dev/zotero-plugin-scaffold/HEAD/test/e2e/fixtures/static/manifest.json -------------------------------------------------------------------------------- /test/e2e/fixtures/static/preference.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero-plugin-dev/zotero-plugin-scaffold/HEAD/test/e2e/fixtures/static/preference.xhtml -------------------------------------------------------------------------------- /test/e2e/fixtures/static/prefs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero-plugin-dev/zotero-plugin-scaffold/HEAD/test/e2e/fixtures/static/prefs.js -------------------------------------------------------------------------------- /test/e2e/snap/dist/addon/locale/en-US/test-plugin-prefs.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero-plugin-dev/zotero-plugin-scaffold/HEAD/test/e2e/snap/dist/addon/locale/en-US/test-plugin-prefs.ftl -------------------------------------------------------------------------------- /test/e2e/snap/dist/addon/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero-plugin-dev/zotero-plugin-scaffold/HEAD/test/e2e/snap/dist/addon/manifest.json -------------------------------------------------------------------------------- /test/e2e/snap/dist/addon/preference.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero-plugin-dev/zotero-plugin-scaffold/HEAD/test/e2e/snap/dist/addon/preference.xhtml -------------------------------------------------------------------------------- /test/e2e/snap/dist/addon/prefs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero-plugin-dev/zotero-plugin-scaffold/HEAD/test/e2e/snap/dist/addon/prefs.js -------------------------------------------------------------------------------- /test/e2e/snap/dist/update-beta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero-plugin-dev/zotero-plugin-scaffold/HEAD/test/e2e/snap/dist/update-beta.json -------------------------------------------------------------------------------- /test/e2e/snap/dist/update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero-plugin-dev/zotero-plugin-scaffold/HEAD/test/e2e/snap/dist/update.json -------------------------------------------------------------------------------- /test/e2e/snap/typings/i10n.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero-plugin-dev/zotero-plugin-scaffold/HEAD/test/e2e/snap/typings/i10n.d.ts -------------------------------------------------------------------------------- /test/e2e/snap/typings/prefs.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero-plugin-dev/zotero-plugin-scaffold/HEAD/test/e2e/snap/typings/prefs.d.ts -------------------------------------------------------------------------------- /test/e2e/tests/build.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero-plugin-dev/zotero-plugin-scaffold/HEAD/test/e2e/tests/build.test.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero-plugin-dev/zotero-plugin-scaffold/HEAD/tsconfig.json -------------------------------------------------------------------------------- /typings/commander.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero-plugin-dev/zotero-plugin-scaffold/HEAD/typings/commander.d.ts -------------------------------------------------------------------------------- /vitest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero-plugin-dev/zotero-plugin-scaffold/HEAD/vitest.config.ts --------------------------------------------------------------------------------