├── .gitattributes ├── .github └── workflows │ ├── publish.yml │ └── test.yml ├── .gitignore ├── .vscode ├── extensions.json └── settings.json ├── .yarn ├── releases │ └── yarn-4.1.1.cjs └── sdks │ ├── integrations.yml │ └── typescript │ ├── bin │ ├── tsc │ └── tsserver │ ├── lib │ ├── tsc.js │ ├── tsserver.js │ ├── tsserverlibrary.js │ └── typescript.js │ └── package.json ├── .yarnrc.yml ├── Dockerfile ├── README.md ├── bin └── test.ts ├── nodesource.gpg ├── package.json ├── r-project.gpg ├── tests ├── archives.test.ts ├── data-manip.test.ts ├── dataloader-languages.test.ts ├── editing-tools.test.ts ├── fixtures │ └── poetry-test │ │ └── pyproject.toml ├── general-cli.test.ts ├── images.test.ts ├── index.ts └── networking.test.ts └── yarn.lock /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/observablehq/framework-runtime/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/observablehq/framework-runtime/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/observablehq/framework-runtime/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/observablehq/framework-runtime/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/observablehq/framework-runtime/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/observablehq/framework-runtime/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.yarn/releases/yarn-4.1.1.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/observablehq/framework-runtime/HEAD/.yarn/releases/yarn-4.1.1.cjs -------------------------------------------------------------------------------- /.yarn/sdks/integrations.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/observablehq/framework-runtime/HEAD/.yarn/sdks/integrations.yml -------------------------------------------------------------------------------- /.yarn/sdks/typescript/bin/tsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/observablehq/framework-runtime/HEAD/.yarn/sdks/typescript/bin/tsc -------------------------------------------------------------------------------- /.yarn/sdks/typescript/bin/tsserver: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/observablehq/framework-runtime/HEAD/.yarn/sdks/typescript/bin/tsserver -------------------------------------------------------------------------------- /.yarn/sdks/typescript/lib/tsc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/observablehq/framework-runtime/HEAD/.yarn/sdks/typescript/lib/tsc.js -------------------------------------------------------------------------------- /.yarn/sdks/typescript/lib/tsserver.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/observablehq/framework-runtime/HEAD/.yarn/sdks/typescript/lib/tsserver.js -------------------------------------------------------------------------------- /.yarn/sdks/typescript/lib/tsserverlibrary.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/observablehq/framework-runtime/HEAD/.yarn/sdks/typescript/lib/tsserverlibrary.js -------------------------------------------------------------------------------- /.yarn/sdks/typescript/lib/typescript.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/observablehq/framework-runtime/HEAD/.yarn/sdks/typescript/lib/typescript.js -------------------------------------------------------------------------------- /.yarn/sdks/typescript/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/observablehq/framework-runtime/HEAD/.yarn/sdks/typescript/package.json -------------------------------------------------------------------------------- /.yarnrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/observablehq/framework-runtime/HEAD/.yarnrc.yml -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/observablehq/framework-runtime/HEAD/Dockerfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/observablehq/framework-runtime/HEAD/README.md -------------------------------------------------------------------------------- /bin/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/observablehq/framework-runtime/HEAD/bin/test.ts -------------------------------------------------------------------------------- /nodesource.gpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/observablehq/framework-runtime/HEAD/nodesource.gpg -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/observablehq/framework-runtime/HEAD/package.json -------------------------------------------------------------------------------- /r-project.gpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/observablehq/framework-runtime/HEAD/r-project.gpg -------------------------------------------------------------------------------- /tests/archives.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/observablehq/framework-runtime/HEAD/tests/archives.test.ts -------------------------------------------------------------------------------- /tests/data-manip.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/observablehq/framework-runtime/HEAD/tests/data-manip.test.ts -------------------------------------------------------------------------------- /tests/dataloader-languages.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/observablehq/framework-runtime/HEAD/tests/dataloader-languages.test.ts -------------------------------------------------------------------------------- /tests/editing-tools.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/observablehq/framework-runtime/HEAD/tests/editing-tools.test.ts -------------------------------------------------------------------------------- /tests/fixtures/poetry-test/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/observablehq/framework-runtime/HEAD/tests/fixtures/poetry-test/pyproject.toml -------------------------------------------------------------------------------- /tests/general-cli.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/observablehq/framework-runtime/HEAD/tests/general-cli.test.ts -------------------------------------------------------------------------------- /tests/images.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/observablehq/framework-runtime/HEAD/tests/images.test.ts -------------------------------------------------------------------------------- /tests/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/observablehq/framework-runtime/HEAD/tests/index.ts -------------------------------------------------------------------------------- /tests/networking.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/observablehq/framework-runtime/HEAD/tests/networking.test.ts -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/observablehq/framework-runtime/HEAD/yarn.lock --------------------------------------------------------------------------------