* Move plugins folder from electron to root folder * Add CICD for plugins * Fix error electron import plugin after change plugin name * Add remove app cache on CI test pipeline --------- Co-authored-by: Hien To <>
47 lines
1.4 KiB
JSON
47 lines
1.4 KiB
JSON
{
|
|
"name": "@janhq/data-plugin",
|
|
"version": "1.0.0",
|
|
"description": "The Data Connector provides easy access to a data API using the PouchDB engine. It offers accessible data management capabilities.",
|
|
"icon": "https://raw.githubusercontent.com/tailwindlabs/heroicons/88e98b0c2b458553fbadccddc2d2f878edc0387b/src/20/solid/circle-stack.svg",
|
|
"main": "dist/esm/index.js",
|
|
"author": "Jan",
|
|
"license": "MIT",
|
|
"activationPoints": [
|
|
"init"
|
|
],
|
|
"scripts": {
|
|
"build": "tsc --project ./config/tsconfig.esm.json && tsc --project ./config/tsconfig.cjs.json && webpack --config webpack.config.js",
|
|
"postinstall": "rimraf ./data-plugin*.tgz && npm run build",
|
|
"build:publish": "npm pack && cpx *.tgz ../../electron/core/pre-install"
|
|
},
|
|
"exports": {
|
|
"import": "./dist/esm/index.js",
|
|
"require": "./dist/cjs/module.js",
|
|
"default": "./dist/esm/index.js"
|
|
},
|
|
"devDependencies": {
|
|
"cpx": "^1.5.0",
|
|
"node-pre-gyp": "^0.17.0",
|
|
"rimraf": "^3.0.2",
|
|
"ts-loader": "^9.4.4",
|
|
"ts-node": "^10.9.1",
|
|
"typescript": "^5.2.2",
|
|
"webpack": "^5.88.2",
|
|
"webpack-cli": "^5.1.4"
|
|
},
|
|
"bundledDependencies": [
|
|
"pouchdb-node",
|
|
"pouchdb-find"
|
|
],
|
|
"files": [
|
|
"dist/**",
|
|
"package.json",
|
|
"node_modules"
|
|
],
|
|
"dependencies": {
|
|
"@janhq/plugin-core": "^0.1.8",
|
|
"pouchdb-find": "^8.0.1",
|
|
"pouchdb-node": "^8.0.1"
|
|
}
|
|
}
|