From 6a01ad815c8d2469a113d090ebde974eebb46fa1 Mon Sep 17 00:00:00 2001 From: Yuva <94527987+yuvashrikarunakaran@users.noreply.github.com> Date: Fri, 20 Dec 2024 21:40:23 +0530 Subject: [PATCH] Update package.json Here's an updated version of your package.json for the Pluto Frontend Bundler project --- frontend-bundler/package.json | 32 ++++++++++++++++++++++++++------ 1 file changed, 26 insertions(+), 6 deletions(-) diff --git a/frontend-bundler/package.json b/frontend-bundler/package.json index 446855dac..5c9f4f4e6 100644 --- a/frontend-bundler/package.json +++ b/frontend-bundler/package.json @@ -1,18 +1,20 @@ -{ + { "name": "pluto-frontend-bundler", "workspaces": [ "parcel-resolver-like-a-browser" ], "version": "1.0.0", - "description": "", + "description": "Custom bundler setup for Pluto frontend with Parcel and additional plugins.", "scripts": { "clean": "rm -rf ../frontend-dist ../frontend-dist-static", "start": "cd ../frontend && parcel --dist-dir ../frontend-dist --config ../frontend-bundler/.parcelrc index.html editor.html error.jl.html", - "note about order": "super weird but index.html has to come before editor.html or the prefetch in index.html will not bundle correctly.", "build": "npm run clean && cd ../frontend && parcel build --no-source-maps --public-url . --dist-dir ../frontend-dist --config ../frontend-bundler/.parcelrc index.html editor.html error.jl.html", "test": "echo \"Error: no test specified\" && exit 1" }, - "author": "", + "note": { + "about_order": "Super weird but index.html has to come before editor.html or the prefetch in index.html will not bundle correctly." + }, + "author": "Your Name ", "license": "ISC", "dependencies": { "@parcel/config-default": "^2.11.0", @@ -31,6 +33,24 @@ "@plutojl/posthtml-crossorigin": "^1.0.0", "@types/node": "^22", "posthtml": "^0.16.6", - "posthtml-sri": "^2.0.0" - } + "posthtml-sri": "^2.0.0", + "eslint": "^8.0.0", + "prettier": "^3.0.0" + }, + "keywords": [ + "parcel", + "frontend", + "bundler", + "custom", + "pluto", + "browser" + ], + "repository": { + "type": "git", + "url": "https://github.com/yourusername/pluto-frontend-bundler.git" + }, + "bugs": { + "url": "https://github.com/yourusername/pluto-frontend-bundler/issues" + }, + "homepage": "https://github.com/yourusername/pluto-frontend-bundler#readme" }