29 lines
893 B
JSON
29 lines
893 B
JSON
{
|
|
"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"
|
|
}
|
|
}
|