-
-
Notifications
You must be signed in to change notification settings - Fork 292
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
The package.json file you've shared is set up for a Parcel plugin, specifically a custom resolver plugin
- Loading branch information
Yuva
authored
Dec 20, 2024
1 parent
caf7456
commit e1cc5a5
Showing
1 changed file
with
29 additions
and
6 deletions.
There are no files selected for viewing
35 changes: 29 additions & 6 deletions
35
frontend-bundler/parcel-resolver-like-a-browser/package.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,41 @@ | ||
{ | ||
{ | ||
"name": "parcel-resolver-like-a-browser", | ||
"version": "1.0.0", | ||
"description": "", | ||
"description": "A custom Parcel resolver that mimics browser-like behavior for resolving modules and URLs.", | ||
"main": "https-resolver.js", | ||
"scripts": { | ||
"test": "echo \"Error: no test specified\" && exit 1" | ||
"test": "echo \"Error: no test specified\" && exit 1", | ||
"lint": "eslint .", | ||
"format": "prettier --write ." | ||
}, | ||
"engines": { | ||
"parcel": "2.x" | ||
}, | ||
"author": "", | ||
"author": "Your Name <[email protected]>", | ||
"license": "ISC", | ||
"dependencies": { | ||
"@parcel/node-resolver-core": "^3.3.0", | ||
"@parcel/plugin": "^2.0.0" | ||
} | ||
"@parcel/plugin": "^2.0.0", | ||
"mkdirp": "^1.0.4" | ||
}, | ||
"devDependencies": { | ||
"eslint": "^8.0.0", | ||
"prettier": "^3.0.0" | ||
}, | ||
"keywords": [ | ||
"parcel", | ||
"resolver", | ||
"plugin", | ||
"browser-like", | ||
"frontend", | ||
"bundler" | ||
], | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/yourusername/parcel-resolver-like-a-browser.git" | ||
}, | ||
"bugs": { | ||
"url": "https://github.com/yourusername/parcel-resolver-like-a-browser/issues" | ||
}, | ||
"homepage": "https://github.com/yourusername/parcel-resolver-like-a-browser#readme" | ||
} |