* feature: event based plugin * chore: update README.md * Update yarn script for build plugins (#363) * Update yarn script for build plugins * Plugin-core install from npmjs instead of from local --------- Co-authored-by: Hien To <> * #360 plugin preferences (#361) * feature: #360 plugin preferences * chore: update core-plugin README.md * chore: create collections on start * chore: bumb core version * chore: update README * chore: notify preferences update * fix: preference update --------- Co-authored-by: hiento09 <136591877+hiento09@users.noreply.github.com>
37 lines
974 B
JSON
37 lines
974 B
JSON
{
|
|
"name": "model-management-plugin",
|
|
"version": "1.0.0",
|
|
"description": "Model Management Plugin provides model exploration and seamless downloads",
|
|
"icon": "https://raw.githubusercontent.com/tailwindlabs/heroicons/88e98b0c2b458553fbadccddc2d2f878edc0387b/src/20/solid/queue-list.svg",
|
|
"main": "dist/index.js",
|
|
"author": "James",
|
|
"license": "MIT",
|
|
"activationPoints": [
|
|
"init"
|
|
],
|
|
"scripts": {
|
|
"build": "tsc -b . && webpack --config webpack.config.js",
|
|
"postinstall": "rimraf ./*.tgz && npm run build",
|
|
"build:publish": "npm pack && cpx *.tgz ../../pre-install"
|
|
},
|
|
"devDependencies": {
|
|
"cpx": "^1.5.0",
|
|
"rimraf": "^3.0.2",
|
|
"webpack": "^5.88.2",
|
|
"webpack-cli": "^5.1.4"
|
|
},
|
|
"files": [
|
|
"dist/*",
|
|
"package.json",
|
|
"README.md"
|
|
],
|
|
"dependencies": {
|
|
"@huggingface/hub": "^0.8.5",
|
|
"@janhq/plugin-core": "^0.1.7",
|
|
"ts-loader": "^9.5.0"
|
|
},
|
|
"bundledDependencies": [
|
|
"@huggingface/hub"
|
|
]
|
|
}
|