First refactor without AI

This commit is contained in:
Your Name
2025-03-15 18:32:10 -04:00
commit ab5380a399
25 changed files with 1661 additions and 0 deletions
+28
View File
@@ -0,0 +1,28 @@
{
"name": "new-tab-extension",
"version": "1.0.0",
"description": "A customizable new tab page Chrome extension",
"main": "index.js",
"scripts": {
"start": "esbuild src/renderer/index.tsx --bundle --outfile=dist/index.js --sourcemap --watch",
"build": "rm -rf dist && mkdir dist && cp -r public/* dist/ && cp manifest.json dist/ && esbuild src/renderer/index.tsx --bundle --outfile=dist/index.js --minify --sourcemap",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@types/chrome": "^0.0.269",
"@types/react": "^18.3.11",
"@types/react-dom": "^18.3.0",
"@types/uuid": "^10.0.0",
"esbuild": "^0.23.1",
"typescript": "^5.6.2"
},
"dependencies": {
"jotai": "^2.12.2",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"rxjs": "^7.8.2",
"uuid": "^10.0.0"
}
}