Skip to content

Commit

Permalink
fix package.json
Browse files Browse the repository at this point in the history
  • Loading branch information
Xarthisius committed Jan 19, 2024
1 parent acd200d commit 7212e52
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions virtual_resources/web_client/package.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,15 @@
{
"name": "@girder/virtual-resources", // The name of your plugin
"name": "@girder/virtual-resources",
"version": "1.0.0",
"description": "A Girder plugin that provides virtual resources.",
"license": "BSD-3-Clause",
"peerDepencencies": {
"@girder/core": "*" // Your plugin will likely depend on girder/core.
"@girder/core": "*"
},
"dependencies": {}, // Any other dependencies of the client code
"dependencies": {},
"girderPlugin": {
"name": "virtual_resources", // The entrypoint name defined in setup.py.
"main": "./main.js" // The plugin client entrypoint containing code that is executed on load.
"dependencies": [] // If you plugin web_client requires another plugin
"name": "virtual_resources",
"main": "./main.js",
"dependencies": []
}
}

0 comments on commit 7212e52

Please sign in to comment.