Prepare repo for open source

This commit is contained in:
Samraaj Bath
2026-06-29 16:14:44 -07:00
parent 66dfdcc58d
commit 3f7c9ed227
28 changed files with 1461 additions and 574 deletions
+927 -282
View File
File diff suppressed because it is too large Load Diff
+7 -7
View File
@@ -6,18 +6,18 @@
"build": "next build"
},
"dependencies": {
"next": "14.2.21",
"react": "18.3.1",
"react-dom": "18.3.1"
"next": "15.5.19",
"react": "19.2.7",
"react-dom": "19.2.7"
},
"devDependencies": {
"@vitejs/plugin-react": "^4.3.4",
"@vitejs/plugin-react": "^4.7.0",
"@tailwindcss/postcss": "^4.3.1",
"@types/node": "22.10.5",
"@types/react": "18.3.18",
"@types/react-dom": "18.3.5",
"@types/react": "19.2.17",
"@types/react-dom": "19.2.3",
"tailwindcss": "^4.3.1",
"typescript": "5.7.3",
"vite": "^5.4.11"
"vite": "^6.4.3"
}
}
+5 -5
View File
@@ -4,14 +4,14 @@
"private": true,
"scripts": { "build": "next build" },
"dependencies": {
"next": "14.2.21",
"react": "18.3.1",
"react-dom": "18.3.1"
"next": "15.5.19",
"react": "19.2.7",
"react-dom": "19.2.7"
},
"devDependencies": {
"typescript": "5.7.3",
"@types/node": "22.10.5",
"@types/react": "18.3.18",
"@types/react-dom": "18.3.5"
"@types/react": "19.2.17",
"@types/react-dom": "19.2.3"
}
}
+12
View File
@@ -2,6 +2,18 @@
"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"
+22 -22
View File
@@ -2528,15 +2528,15 @@ export const PACKAGE_JSON = `{
"start": "next start"
},
"dependencies": {
"next": "14.2.21",
"react": "18.3.1",
"react-dom": "18.3.1"
"next": "15.5.19",
"react": "19.2.7",
"react-dom": "19.2.7"
},
"devDependencies": {
"typescript": "5.7.3",
"@types/node": "22.10.5",
"@types/react": "18.3.18",
"@types/react-dom": "18.3.5"
"@types/react": "19.2.17",
"@types/react-dom": "19.2.3"
}
}
`;
@@ -2552,15 +2552,15 @@ export const PACKAGE_JSON_TW = `{
"start": "next start"
},
"dependencies": {
"next": "14.2.21",
"react": "18.3.1",
"react-dom": "18.3.1"
"next": "15.5.19",
"react": "19.2.7",
"react-dom": "19.2.7"
},
"devDependencies": {
"typescript": "5.7.3",
"@types/node": "22.10.5",
"@types/react": "18.3.18",
"@types/react-dom": "18.3.5",
"@types/react": "19.2.17",
"@types/react-dom": "19.2.3",
"tailwindcss": "^4",
"@tailwindcss/postcss": "^4"
}
@@ -2578,16 +2578,16 @@ export const PACKAGE_JSON_VITE = `{
"start": "vite preview"
},
"dependencies": {
"react": "18.3.1",
"react-dom": "18.3.1"
"react": "19.2.7",
"react-dom": "19.2.7"
},
"devDependencies": {
"@vitejs/plugin-react": "^4.3.4",
"vite": "^5.4.11",
"@vitejs/plugin-react": "^4.7.0",
"vite": "^6.4.3",
"typescript": "5.7.3",
"@types/node": "22.10.5",
"@types/react": "18.3.18",
"@types/react-dom": "18.3.5"
"@types/react": "19.2.17",
"@types/react-dom": "19.2.3"
}
}
`;
@@ -2603,16 +2603,16 @@ export const PACKAGE_JSON_VITE_TW = `{
"start": "vite preview"
},
"dependencies": {
"react": "18.3.1",
"react-dom": "18.3.1"
"react": "19.2.7",
"react-dom": "19.2.7"
},
"devDependencies": {
"@vitejs/plugin-react": "^4.3.4",
"vite": "^5.4.11",
"@vitejs/plugin-react": "^4.7.0",
"vite": "^6.4.3",
"typescript": "5.7.3",
"@types/node": "22.10.5",
"@types/react": "18.3.18",
"@types/react-dom": "18.3.5",
"@types/react": "19.2.17",
"@types/react-dom": "19.2.3",
"tailwindcss": "^4",
"@tailwindcss/postcss": "^4"
}