Files
ditto.site/compiler/package.json
dependabot[bot]andGitHub aea1d638b6 Bump the dev-dependencies group across 1 directory with 3 updates
Bumps the dev-dependencies group with 3 updates in the / directory: [tsx](https://github.com/privatenumber/tsx), [typescript](https://github.com/microsoft/TypeScript) and [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node).


Updates `tsx` from 4.22.4 to 4.23.0
- [Release notes](https://github.com/privatenumber/tsx/releases)
- [Changelog](https://github.com/privatenumber/tsx/blob/master/release.config.cjs)
- [Commits](https://github.com/privatenumber/tsx/compare/v4.22.4...v4.23.0)

Updates `typescript` from 5.7.3 to 6.0.3
- [Release notes](https://github.com/microsoft/TypeScript/releases)
- [Commits](https://github.com/microsoft/TypeScript/compare/v5.7.3...v6.0.3)

Updates `@types/node` from 22.10.5 to 26.1.0
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node)

---
updated-dependencies:
- dependency-name: "@types/node"
  dependency-version: 26.1.0
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: dev-dependencies
- dependency-name: tsx
  dependency-version: 4.23.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: typescript
  dependency-version: 6.0.3
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: dev-dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>
2026-07-06 16:56:23 +00:00

51 lines
1.4 KiB
JSON

{
"name": "clone-static",
"version": "0.1.0",
"private": true,
"description": "Deterministic website compiler CLI and library for ditto.site.",
"license": "MIT",
"author": "ion-design",
"repository": {
"type": "git",
"url": "https://github.com/ion-design/ditto.site.git",
"directory": "compiler"
},
"bugs": {
"url": "https://github.com/ion-design/ditto.site/issues"
},
"homepage": "https://github.com/ion-design/ditto.site#readme",
"type": "module",
"bin": {
"clone-static": "./src/cli.ts"
},
"exports": {
".": "./src/index.ts",
"./package.json": "./package.json"
},
"scripts": {
"clone": "tsx src/cli.ts",
"clone-site": "tsx src/site/cloneSite.ts",
"validate-site": "tsx src/site/validateSite.ts",
"bench": "tsx src/runner/benchmark.ts",
"bench-site": "tsx src/runner/siteBenchmark.ts",
"validate-one": "tsx src/runner/validateOne.ts",
"quality": "tsx src/runner/qualityScore.ts",
"audit": "tsx src/runner/codeAudit.ts",
"regen": "tsx src/runner/regen.ts",
"test": "node --import tsx --test test/*.test.ts",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"playwright": "1.56.1",
"pixelmatch": "5.3.0",
"pngjs": "7.0.0"
},
"devDependencies": {
"tsx": "4.23.0",
"typescript": "6.0.3",
"@types/node": "26.1.0",
"@types/pixelmatch": "5.2.6",
"@types/pngjs": "6.0.5"
}
}