-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
acd200d
commit 7212e52
Showing
1 changed file
with
8 additions
and
6 deletions.
There are no files selected for viewing
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,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": [] | ||
} | ||
} |