Clean up package files in preparation for publishing @padloc/core and @padloc/locale modules (all other packages will remain private for now)

This commit is contained in:
Martin Kleinschrodt 2019-11-14 16:11:47 +01:00
parent ebc4090f67
commit 1f8d152258
10 changed files with 68 additions and 28 deletions

View File

@ -3,6 +3,18 @@
"version": "3.0.10",
"author": "Martin Kleinschrodt <martin@maklesoft.com>",
"license": "GPL-3.0",
"private": true,
"files": [
"src",
"assets",
"types",
"tsconfig.json"
],
"repository": {
"type" : "git",
"url" : "https://github.com/padloc/padloc.git",
"directory": "packages/app"
},
"dependencies": {
"@padloc/core": "^3.0.10",
"@padloc/locale": "^3.0.6",
@ -18,19 +30,20 @@
"ua-parser-js": "^0.7.20",
"workbox-sw": "^4.3.1",
"workbox-window": "^4.3.1",
"zxcvbn": "^4.4.2"
},
"devDependencies": {
"@types/chai": "^4.1.7",
"@types/mocha": "^5.2.5",
"zxcvbn": "^4.4.2",
"@types/papaparse": "^5.0.0",
"@types/ua-parser-js": "^0.7.33",
"@types/workbox-sw": "^4.2.0",
"@types/workbox-window": "^4.3.1",
"@types/zxcvbn": "^4.4.0",
"chai": "^4.2.0",
"mocha": "^5.2.0",
"reflect-metadata": "^0.1.12"
},
"devDependencies": {
"@types/chai": "^4.1.7",
"@types/mocha": "^5.2.5",
"chai": "^4.2.0",
"mocha": "^5.2.0"
},
"description": "Padloc Web-Based UI package"
}

View File

@ -1,6 +1,6 @@
{
"name": "app.padloc",
"version": "3.0.9",
"version": "3.0.10",
"lockfileVersion": 1,
"requires": true,
"dependencies": {

View File

@ -2,6 +2,7 @@
"name": "app.padloc",
"version": "3.0.10",
"displayName": "Padloc",
"private": true,
"cordova": {
"platforms": [
"electron",

View File

@ -5,7 +5,6 @@
"main": "index.js",
"author": "Martin Kleinschrodt <martin@maklesoft.com>",
"license": "GPLv3",
"private": false,
"files": [
"src",
"vendor",
@ -25,5 +24,10 @@
"scripts": {
"test": "cd test && mocha -r ts-node/register *.ts",
"docs": "typedoc --out docs"
},
"repository": {
"type" : "git",
"url" : "https://github.com/padloc/padloc.git",
"directory": "packages/core"
}
}

View File

@ -3,6 +3,7 @@
"version": "3.0.10",
"description": "Electron Wrapper for Padloc app",
"main": "main.js",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/padloc/padloc.git"

View File

@ -1,7 +0,0 @@
const { parse } = require("yaml");
module.exports = function(source) {
const items = parse(source);
return `export default ${JSON.stringify(items)}`;
};

View File

@ -1,17 +1,24 @@
{
"name": "@padloc/locale",
"version": "3.0.6",
"description": "",
"description": "Package containing translations and wordlists for Padloc as well as various other localization tools",
"main": "index.js",
"files": [
"src",
"res"
],
"scripts": {
"extract": "ts-node src/extract.ts ../*/src/{**,.}/*.ts"
},
"author": "",
"license": "ISC",
"author": "Martin Kleinschrodt <martin@maklesoft.com>",
"license": "GPLv3",
"devDependencies": {
"@types/yaml": "^1.0.2",
"ts-node": "^8.3.0",
"typescript": "^3.5.3",
"yaml": "^1.6.0"
"typescript": "^3.5.3"
},
"repository": {
"type" : "git",
"url" : "https://github.com/padloc/padloc.git",
"directory": "packages/locale"
}
}

View File

@ -1,6 +1,7 @@
{
"name": "@padloc/manage",
"version": "3.0.10",
"private": true,
"description": "Padloc Server Mangement",
"main": "index.js",
"scripts": {},

View File

@ -3,6 +3,17 @@
"version": "3.0.10",
"author": "Martin Kleinschrodt <martin@maklesoft.com>",
"license": "GPL-3.0",
"private": true,
"files": [
"src",
"assets",
"tsconfig.json"
],
"repository": {
"type" : "git",
"url" : "https://github.com/padloc/padloc.git",
"directory": "packages/pwa"
},
"dependencies": {
"@padloc/app": "^3.0.10",
"@padloc/core": "^3.0.10"

View File

@ -2,28 +2,37 @@
"name": "@padloc/server",
"version": "3.0.10",
"description": "Padloc server component",
"private": true,
"files": [
"src",
"tsconfig.json"
],
"main": "index.js",
"author": "Martin Kleinschrodt <martin@maklesoft.com>",
"license": "GPLv3",
"private": false,
"devDependencies": {
"@types/fs-extra": "^5.0.4",
"@types/nodemailer": "^4.6.2",
"ts-node": "^7.0.1",
"ts-node-dev": "^1.0.0-pre.42",
"typescript": "^3.3.3333"
},
"dependencies": {
"@types/fs-extra": "^5.0.4",
"@types/nodemailer": "^4.6.2",
"@types/stripe": "^6.26.5",
"@padloc/core": "^3.0.10",
"@padloc/locale": "^3.0.6",
"@types/stripe": "^6.26.5",
"fs-extra": "^7.0.1",
"level": "^5.0.1",
"nodemailer": "^4.6.7",
"stripe": "^7.1.0"
"stripe": "^7.1.0",
"ts-node": "^7.0.1"
},
"scripts": {
"start": "ts-node src/init.ts",
"dev": "ts-node-dev src/init.ts"
},
"repository": {
"type" : "git",
"url" : "https://github.com/padloc/padloc.git",
"directory": "packages/server"
}
}