├── .all-contributorsrc ├── .coderabbit.yaml ├── .editorconfig ├── .gitattributes ├── .github ├── CODEOWNERS ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug-report.md │ └── feature-request.md ├── actions │ └── setup │ │ └── action.yml ├── dependabot.yml ├── dependency-review-config.yml ├── labeler.yml ├── pull_request_template.md └── workflows │ ├── ci.yml │ ├── codeql.yml │ ├── dependency-review.yml │ ├── labeler.yml │ ├── ossf-scorecard.yml │ ├── osv-scan-pr.yml │ ├── osv-scan-scheduled.yml │ └── stale.yml ├── .gitignore ├── .husky ├── commit-msg └── pre-commit ├── .npmrc ├── .nvmrc ├── .prettierignore ├── .vscode ├── extensions.json └── settings.json ├── LICENSE ├── README.md ├── SECURITY.md ├── commitlint.config.js ├── eslint.config.js ├── osv-scanner.toml ├── package.json ├── pnpm-lock.yaml ├── pnpm-workspace.yaml ├── prettier.config.js ├── release.config.cjs ├── src ├── analyzer.ts ├── dependency-info-registry.ts ├── helpers.ts ├── index.ts ├── license-evidence.ts ├── options.ts ├── package-finder.ts ├── package-reader.ts ├── tools.ts └── types │ ├── OrganizationalEntityOption.ts │ └── aliases.ts ├── test ├── analyzer.test.ts ├── fixtures │ ├── resolution │ │ ├── .gitignore │ │ ├── README.md │ │ ├── fake-tree │ │ │ ├── a │ │ │ │ ├── index.js │ │ │ │ ├── node_modules │ │ │ │ │ ├── c │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ └── package.json │ │ │ │ │ └── unused │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ └── package.json │ │ │ │ └── package.json │ │ │ └── b │ │ │ │ ├── index.js │ │ │ │ ├── node_modules │ │ │ │ ├── a │ │ │ │ │ ├── index.js │ │ │ │ │ └── package.json │ │ │ │ └── side-effect │ │ │ │ │ ├── index.js │ │ │ │ │ └── package.json │ │ │ │ └── package.json │ │ ├── package.json │ │ ├── rollup.config.mjs │ │ └── src │ │ │ └── index.js │ ├── rollup-v4 │ │ ├── .gitignore │ │ ├── package.json │ │ ├── rollup.config.mjs │ │ └── src │ │ │ └── index.js │ ├── vite-v5 │ │ ├── .gitignore │ │ ├── README.md │ │ ├── index.html │ │ ├── package.json │ │ ├── public │ │ │ └── vite.svg │ │ ├── src │ │ │ ├── App.css │ │ │ ├── App.tsx │ │ │ ├── assets │ │ │ │ └── react.svg │ │ │ ├── index.css │ │ │ ├── main.tsx │ │ │ └── vite-env.d.ts │ │ ├── tsconfig.json │ │ ├── tsconfig.node.json │ │ └── vite.config.ts │ ├── vite-v6 │ │ ├── .eslintrc.cjs │ │ ├── .gitignore │ │ ├── README.md │ │ ├── index.html │ │ ├── package.json │ │ ├── public │ │ │ └── vite.svg │ │ ├── src │ │ │ ├── App.css │ │ │ ├── App.tsx │ │ │ ├── ComponentWithDeps.tsx │ │ │ ├── DynamicComponent.tsx │ │ │ ├── assets │ │ │ │ └── react.svg │ │ │ ├── index.css │ │ │ ├── main.tsx │ │ │ └── vite-env.d.ts │ │ ├── tsconfig.json │ │ ├── tsconfig.node.json │ │ └── vite.config.ts │ └── vite-v7 │ │ ├── .eslintrc.cjs │ │ ├── .gitignore │ │ ├── README.md │ │ ├── index.html │ │ ├── package.json │ │ ├── public │ │ └── vite.svg │ │ ├── src │ │ ├── App.css │ │ ├── App.tsx │ │ ├── ComponentWithDeps.tsx │ │ ├── DynamicComponent.tsx │ │ ├── assets │ │ │ └── react.svg │ │ ├── index.css │ │ ├── main.tsx │ │ └── vite-env.d.ts │ │ ├── tsconfig.json │ │ ├── tsconfig.node.json │ │ └── vite.config.ts ├── helpers.test.ts ├── output-formats.test.ts ├── resolution.test.ts ├── rollup-v4.test.ts ├── schemas │ ├── bom-1.5.schema.json │ ├── bom-1.6.schema.json │ ├── cyclonedx-spdx.schema.json │ ├── jsf.schema.json │ └── spdx.schema.json ├── test-helpers.ts ├── vite-v5.test.ts ├── vite-v6.test.ts └── vite-v7.test.ts ├── tsconfig.json └── vite.config.ts /.all-contributorsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janbiasi/rollup-plugin-sbom/HEAD/.all-contributorsrc -------------------------------------------------------------------------------- /.coderabbit.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janbiasi/rollup-plugin-sbom/HEAD/.coderabbit.yaml -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janbiasi/rollup-plugin-sbom/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janbiasi/rollup-plugin-sbom/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janbiasi/rollup-plugin-sbom/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janbiasi/rollup-plugin-sbom/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug-report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janbiasi/rollup-plugin-sbom/HEAD/.github/ISSUE_TEMPLATE/bug-report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature-request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janbiasi/rollup-plugin-sbom/HEAD/.github/ISSUE_TEMPLATE/feature-request.md -------------------------------------------------------------------------------- /.github/actions/setup/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janbiasi/rollup-plugin-sbom/HEAD/.github/actions/setup/action.yml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janbiasi/rollup-plugin-sbom/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/dependency-review-config.yml: -------------------------------------------------------------------------------- 1 | fail-on-severity: critical 2 | -------------------------------------------------------------------------------- /.github/labeler.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janbiasi/rollup-plugin-sbom/HEAD/.github/labeler.yml -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janbiasi/rollup-plugin-sbom/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janbiasi/rollup-plugin-sbom/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/codeql.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janbiasi/rollup-plugin-sbom/HEAD/.github/workflows/codeql.yml -------------------------------------------------------------------------------- /.github/workflows/dependency-review.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janbiasi/rollup-plugin-sbom/HEAD/.github/workflows/dependency-review.yml -------------------------------------------------------------------------------- /.github/workflows/labeler.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janbiasi/rollup-plugin-sbom/HEAD/.github/workflows/labeler.yml -------------------------------------------------------------------------------- /.github/workflows/ossf-scorecard.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janbiasi/rollup-plugin-sbom/HEAD/.github/workflows/ossf-scorecard.yml -------------------------------------------------------------------------------- /.github/workflows/osv-scan-pr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janbiasi/rollup-plugin-sbom/HEAD/.github/workflows/osv-scan-pr.yml -------------------------------------------------------------------------------- /.github/workflows/osv-scan-scheduled.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janbiasi/rollup-plugin-sbom/HEAD/.github/workflows/osv-scan-scheduled.yml -------------------------------------------------------------------------------- /.github/workflows/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janbiasi/rollup-plugin-sbom/HEAD/.github/workflows/stale.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janbiasi/rollup-plugin-sbom/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/commit-msg: -------------------------------------------------------------------------------- 1 | pnpm dlx commitlint --edit ${1} 2 | -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- 1 | pnpm dlx lint-staged 2 | 3 | -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | ignore-workspace-root-check=true -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | 22 2 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janbiasi/rollup-plugin-sbom/HEAD/.prettierignore -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janbiasi/rollup-plugin-sbom/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janbiasi/rollup-plugin-sbom/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janbiasi/rollup-plugin-sbom/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janbiasi/rollup-plugin-sbom/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janbiasi/rollup-plugin-sbom/HEAD/SECURITY.md -------------------------------------------------------------------------------- /commitlint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janbiasi/rollup-plugin-sbom/HEAD/commitlint.config.js -------------------------------------------------------------------------------- /eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janbiasi/rollup-plugin-sbom/HEAD/eslint.config.js -------------------------------------------------------------------------------- /osv-scanner.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janbiasi/rollup-plugin-sbom/HEAD/osv-scanner.toml -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janbiasi/rollup-plugin-sbom/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janbiasi/rollup-plugin-sbom/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /pnpm-workspace.yaml: -------------------------------------------------------------------------------- 1 | ignore-workspace-root-check: true 2 | packages: 3 | - test/fixtures/* 4 | -------------------------------------------------------------------------------- /prettier.config.js: -------------------------------------------------------------------------------- 1 | export default { 2 | printWidth: 120, 3 | }; 4 | -------------------------------------------------------------------------------- /release.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janbiasi/rollup-plugin-sbom/HEAD/release.config.cjs -------------------------------------------------------------------------------- /src/analyzer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janbiasi/rollup-plugin-sbom/HEAD/src/analyzer.ts -------------------------------------------------------------------------------- /src/dependency-info-registry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janbiasi/rollup-plugin-sbom/HEAD/src/dependency-info-registry.ts -------------------------------------------------------------------------------- /src/helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janbiasi/rollup-plugin-sbom/HEAD/src/helpers.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janbiasi/rollup-plugin-sbom/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/license-evidence.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janbiasi/rollup-plugin-sbom/HEAD/src/license-evidence.ts -------------------------------------------------------------------------------- /src/options.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janbiasi/rollup-plugin-sbom/HEAD/src/options.ts -------------------------------------------------------------------------------- /src/package-finder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janbiasi/rollup-plugin-sbom/HEAD/src/package-finder.ts -------------------------------------------------------------------------------- /src/package-reader.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janbiasi/rollup-plugin-sbom/HEAD/src/package-reader.ts -------------------------------------------------------------------------------- /src/tools.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janbiasi/rollup-plugin-sbom/HEAD/src/tools.ts -------------------------------------------------------------------------------- /src/types/OrganizationalEntityOption.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janbiasi/rollup-plugin-sbom/HEAD/src/types/OrganizationalEntityOption.ts -------------------------------------------------------------------------------- /src/types/aliases.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janbiasi/rollup-plugin-sbom/HEAD/src/types/aliases.ts -------------------------------------------------------------------------------- /test/analyzer.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janbiasi/rollup-plugin-sbom/HEAD/test/analyzer.test.ts -------------------------------------------------------------------------------- /test/fixtures/resolution/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janbiasi/rollup-plugin-sbom/HEAD/test/fixtures/resolution/.gitignore -------------------------------------------------------------------------------- /test/fixtures/resolution/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janbiasi/rollup-plugin-sbom/HEAD/test/fixtures/resolution/README.md -------------------------------------------------------------------------------- /test/fixtures/resolution/fake-tree/a/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janbiasi/rollup-plugin-sbom/HEAD/test/fixtures/resolution/fake-tree/a/index.js -------------------------------------------------------------------------------- /test/fixtures/resolution/fake-tree/a/node_modules/c/index.js: -------------------------------------------------------------------------------- 1 | /*@__PURE__*/ console.log('Module C@1 loaded'); 2 | 3 | export default 'Local Package C - V1' 4 | -------------------------------------------------------------------------------- /test/fixtures/resolution/fake-tree/a/node_modules/c/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janbiasi/rollup-plugin-sbom/HEAD/test/fixtures/resolution/fake-tree/a/node_modules/c/package.json -------------------------------------------------------------------------------- /test/fixtures/resolution/fake-tree/a/node_modules/unused/index.js: -------------------------------------------------------------------------------- 1 | /*@__NO_SIDE_EFFECTS__*/ 2 | export default 'Local Package Unused - V1' 3 | -------------------------------------------------------------------------------- /test/fixtures/resolution/fake-tree/a/node_modules/unused/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janbiasi/rollup-plugin-sbom/HEAD/test/fixtures/resolution/fake-tree/a/node_modules/unused/package.json -------------------------------------------------------------------------------- /test/fixtures/resolution/fake-tree/a/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janbiasi/rollup-plugin-sbom/HEAD/test/fixtures/resolution/fake-tree/a/package.json -------------------------------------------------------------------------------- /test/fixtures/resolution/fake-tree/b/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janbiasi/rollup-plugin-sbom/HEAD/test/fixtures/resolution/fake-tree/b/index.js -------------------------------------------------------------------------------- /test/fixtures/resolution/fake-tree/b/node_modules/a/index.js: -------------------------------------------------------------------------------- 1 | export default 'Local Package A - V2' 2 | -------------------------------------------------------------------------------- /test/fixtures/resolution/fake-tree/b/node_modules/a/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janbiasi/rollup-plugin-sbom/HEAD/test/fixtures/resolution/fake-tree/b/node_modules/a/package.json -------------------------------------------------------------------------------- /test/fixtures/resolution/fake-tree/b/node_modules/side-effect/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janbiasi/rollup-plugin-sbom/HEAD/test/fixtures/resolution/fake-tree/b/node_modules/side-effect/index.js -------------------------------------------------------------------------------- /test/fixtures/resolution/fake-tree/b/node_modules/side-effect/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janbiasi/rollup-plugin-sbom/HEAD/test/fixtures/resolution/fake-tree/b/node_modules/side-effect/package.json -------------------------------------------------------------------------------- /test/fixtures/resolution/fake-tree/b/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janbiasi/rollup-plugin-sbom/HEAD/test/fixtures/resolution/fake-tree/b/package.json -------------------------------------------------------------------------------- /test/fixtures/resolution/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janbiasi/rollup-plugin-sbom/HEAD/test/fixtures/resolution/package.json -------------------------------------------------------------------------------- /test/fixtures/resolution/rollup.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janbiasi/rollup-plugin-sbom/HEAD/test/fixtures/resolution/rollup.config.mjs -------------------------------------------------------------------------------- /test/fixtures/resolution/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janbiasi/rollup-plugin-sbom/HEAD/test/fixtures/resolution/src/index.js -------------------------------------------------------------------------------- /test/fixtures/rollup-v4/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janbiasi/rollup-plugin-sbom/HEAD/test/fixtures/rollup-v4/.gitignore -------------------------------------------------------------------------------- /test/fixtures/rollup-v4/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janbiasi/rollup-plugin-sbom/HEAD/test/fixtures/rollup-v4/package.json -------------------------------------------------------------------------------- /test/fixtures/rollup-v4/rollup.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janbiasi/rollup-plugin-sbom/HEAD/test/fixtures/rollup-v4/rollup.config.mjs -------------------------------------------------------------------------------- /test/fixtures/rollup-v4/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janbiasi/rollup-plugin-sbom/HEAD/test/fixtures/rollup-v4/src/index.js -------------------------------------------------------------------------------- /test/fixtures/vite-v5/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janbiasi/rollup-plugin-sbom/HEAD/test/fixtures/vite-v5/.gitignore -------------------------------------------------------------------------------- /test/fixtures/vite-v5/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janbiasi/rollup-plugin-sbom/HEAD/test/fixtures/vite-v5/README.md -------------------------------------------------------------------------------- /test/fixtures/vite-v5/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janbiasi/rollup-plugin-sbom/HEAD/test/fixtures/vite-v5/index.html -------------------------------------------------------------------------------- /test/fixtures/vite-v5/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janbiasi/rollup-plugin-sbom/HEAD/test/fixtures/vite-v5/package.json -------------------------------------------------------------------------------- /test/fixtures/vite-v5/public/vite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janbiasi/rollup-plugin-sbom/HEAD/test/fixtures/vite-v5/public/vite.svg -------------------------------------------------------------------------------- /test/fixtures/vite-v5/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janbiasi/rollup-plugin-sbom/HEAD/test/fixtures/vite-v5/src/App.css -------------------------------------------------------------------------------- /test/fixtures/vite-v5/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janbiasi/rollup-plugin-sbom/HEAD/test/fixtures/vite-v5/src/App.tsx -------------------------------------------------------------------------------- /test/fixtures/vite-v5/src/assets/react.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janbiasi/rollup-plugin-sbom/HEAD/test/fixtures/vite-v5/src/assets/react.svg -------------------------------------------------------------------------------- /test/fixtures/vite-v5/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janbiasi/rollup-plugin-sbom/HEAD/test/fixtures/vite-v5/src/index.css -------------------------------------------------------------------------------- /test/fixtures/vite-v5/src/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janbiasi/rollup-plugin-sbom/HEAD/test/fixtures/vite-v5/src/main.tsx -------------------------------------------------------------------------------- /test/fixtures/vite-v5/src/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /test/fixtures/vite-v5/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janbiasi/rollup-plugin-sbom/HEAD/test/fixtures/vite-v5/tsconfig.json -------------------------------------------------------------------------------- /test/fixtures/vite-v5/tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janbiasi/rollup-plugin-sbom/HEAD/test/fixtures/vite-v5/tsconfig.node.json -------------------------------------------------------------------------------- /test/fixtures/vite-v5/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janbiasi/rollup-plugin-sbom/HEAD/test/fixtures/vite-v5/vite.config.ts -------------------------------------------------------------------------------- /test/fixtures/vite-v6/.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janbiasi/rollup-plugin-sbom/HEAD/test/fixtures/vite-v6/.eslintrc.cjs -------------------------------------------------------------------------------- /test/fixtures/vite-v6/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janbiasi/rollup-plugin-sbom/HEAD/test/fixtures/vite-v6/.gitignore -------------------------------------------------------------------------------- /test/fixtures/vite-v6/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janbiasi/rollup-plugin-sbom/HEAD/test/fixtures/vite-v6/README.md -------------------------------------------------------------------------------- /test/fixtures/vite-v6/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janbiasi/rollup-plugin-sbom/HEAD/test/fixtures/vite-v6/index.html -------------------------------------------------------------------------------- /test/fixtures/vite-v6/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janbiasi/rollup-plugin-sbom/HEAD/test/fixtures/vite-v6/package.json -------------------------------------------------------------------------------- /test/fixtures/vite-v6/public/vite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janbiasi/rollup-plugin-sbom/HEAD/test/fixtures/vite-v6/public/vite.svg -------------------------------------------------------------------------------- /test/fixtures/vite-v6/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janbiasi/rollup-plugin-sbom/HEAD/test/fixtures/vite-v6/src/App.css -------------------------------------------------------------------------------- /test/fixtures/vite-v6/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janbiasi/rollup-plugin-sbom/HEAD/test/fixtures/vite-v6/src/App.tsx -------------------------------------------------------------------------------- /test/fixtures/vite-v6/src/ComponentWithDeps.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janbiasi/rollup-plugin-sbom/HEAD/test/fixtures/vite-v6/src/ComponentWithDeps.tsx -------------------------------------------------------------------------------- /test/fixtures/vite-v6/src/DynamicComponent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janbiasi/rollup-plugin-sbom/HEAD/test/fixtures/vite-v6/src/DynamicComponent.tsx -------------------------------------------------------------------------------- /test/fixtures/vite-v6/src/assets/react.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janbiasi/rollup-plugin-sbom/HEAD/test/fixtures/vite-v6/src/assets/react.svg -------------------------------------------------------------------------------- /test/fixtures/vite-v6/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janbiasi/rollup-plugin-sbom/HEAD/test/fixtures/vite-v6/src/index.css -------------------------------------------------------------------------------- /test/fixtures/vite-v6/src/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janbiasi/rollup-plugin-sbom/HEAD/test/fixtures/vite-v6/src/main.tsx -------------------------------------------------------------------------------- /test/fixtures/vite-v6/src/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /test/fixtures/vite-v6/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janbiasi/rollup-plugin-sbom/HEAD/test/fixtures/vite-v6/tsconfig.json -------------------------------------------------------------------------------- /test/fixtures/vite-v6/tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janbiasi/rollup-plugin-sbom/HEAD/test/fixtures/vite-v6/tsconfig.node.json -------------------------------------------------------------------------------- /test/fixtures/vite-v6/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janbiasi/rollup-plugin-sbom/HEAD/test/fixtures/vite-v6/vite.config.ts -------------------------------------------------------------------------------- /test/fixtures/vite-v7/.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janbiasi/rollup-plugin-sbom/HEAD/test/fixtures/vite-v7/.eslintrc.cjs -------------------------------------------------------------------------------- /test/fixtures/vite-v7/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janbiasi/rollup-plugin-sbom/HEAD/test/fixtures/vite-v7/.gitignore -------------------------------------------------------------------------------- /test/fixtures/vite-v7/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janbiasi/rollup-plugin-sbom/HEAD/test/fixtures/vite-v7/README.md -------------------------------------------------------------------------------- /test/fixtures/vite-v7/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janbiasi/rollup-plugin-sbom/HEAD/test/fixtures/vite-v7/index.html -------------------------------------------------------------------------------- /test/fixtures/vite-v7/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janbiasi/rollup-plugin-sbom/HEAD/test/fixtures/vite-v7/package.json -------------------------------------------------------------------------------- /test/fixtures/vite-v7/public/vite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janbiasi/rollup-plugin-sbom/HEAD/test/fixtures/vite-v7/public/vite.svg -------------------------------------------------------------------------------- /test/fixtures/vite-v7/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janbiasi/rollup-plugin-sbom/HEAD/test/fixtures/vite-v7/src/App.css -------------------------------------------------------------------------------- /test/fixtures/vite-v7/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janbiasi/rollup-plugin-sbom/HEAD/test/fixtures/vite-v7/src/App.tsx -------------------------------------------------------------------------------- /test/fixtures/vite-v7/src/ComponentWithDeps.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janbiasi/rollup-plugin-sbom/HEAD/test/fixtures/vite-v7/src/ComponentWithDeps.tsx -------------------------------------------------------------------------------- /test/fixtures/vite-v7/src/DynamicComponent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janbiasi/rollup-plugin-sbom/HEAD/test/fixtures/vite-v7/src/DynamicComponent.tsx -------------------------------------------------------------------------------- /test/fixtures/vite-v7/src/assets/react.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janbiasi/rollup-plugin-sbom/HEAD/test/fixtures/vite-v7/src/assets/react.svg -------------------------------------------------------------------------------- /test/fixtures/vite-v7/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janbiasi/rollup-plugin-sbom/HEAD/test/fixtures/vite-v7/src/index.css -------------------------------------------------------------------------------- /test/fixtures/vite-v7/src/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janbiasi/rollup-plugin-sbom/HEAD/test/fixtures/vite-v7/src/main.tsx -------------------------------------------------------------------------------- /test/fixtures/vite-v7/src/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /test/fixtures/vite-v7/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janbiasi/rollup-plugin-sbom/HEAD/test/fixtures/vite-v7/tsconfig.json -------------------------------------------------------------------------------- /test/fixtures/vite-v7/tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janbiasi/rollup-plugin-sbom/HEAD/test/fixtures/vite-v7/tsconfig.node.json -------------------------------------------------------------------------------- /test/fixtures/vite-v7/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janbiasi/rollup-plugin-sbom/HEAD/test/fixtures/vite-v7/vite.config.ts -------------------------------------------------------------------------------- /test/helpers.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janbiasi/rollup-plugin-sbom/HEAD/test/helpers.test.ts -------------------------------------------------------------------------------- /test/output-formats.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janbiasi/rollup-plugin-sbom/HEAD/test/output-formats.test.ts -------------------------------------------------------------------------------- /test/resolution.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janbiasi/rollup-plugin-sbom/HEAD/test/resolution.test.ts -------------------------------------------------------------------------------- /test/rollup-v4.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janbiasi/rollup-plugin-sbom/HEAD/test/rollup-v4.test.ts -------------------------------------------------------------------------------- /test/schemas/bom-1.5.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janbiasi/rollup-plugin-sbom/HEAD/test/schemas/bom-1.5.schema.json -------------------------------------------------------------------------------- /test/schemas/bom-1.6.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janbiasi/rollup-plugin-sbom/HEAD/test/schemas/bom-1.6.schema.json -------------------------------------------------------------------------------- /test/schemas/cyclonedx-spdx.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janbiasi/rollup-plugin-sbom/HEAD/test/schemas/cyclonedx-spdx.schema.json -------------------------------------------------------------------------------- /test/schemas/jsf.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janbiasi/rollup-plugin-sbom/HEAD/test/schemas/jsf.schema.json -------------------------------------------------------------------------------- /test/schemas/spdx.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janbiasi/rollup-plugin-sbom/HEAD/test/schemas/spdx.schema.json -------------------------------------------------------------------------------- /test/test-helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janbiasi/rollup-plugin-sbom/HEAD/test/test-helpers.ts -------------------------------------------------------------------------------- /test/vite-v5.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janbiasi/rollup-plugin-sbom/HEAD/test/vite-v5.test.ts -------------------------------------------------------------------------------- /test/vite-v6.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janbiasi/rollup-plugin-sbom/HEAD/test/vite-v6.test.ts -------------------------------------------------------------------------------- /test/vite-v7.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janbiasi/rollup-plugin-sbom/HEAD/test/vite-v7.test.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janbiasi/rollup-plugin-sbom/HEAD/tsconfig.json -------------------------------------------------------------------------------- /vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janbiasi/rollup-plugin-sbom/HEAD/vite.config.ts --------------------------------------------------------------------------------