Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update package.json #3125

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
32 changes: 26 additions & 6 deletions frontend-bundler/package.json
Original file line number Diff line number Diff line change
@@ -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 <your.email@example.com>",
"license": "ISC",
"dependencies": {
"@parcel/config-default": "^2.11.0",
Expand All @@ -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"
}
Loading