this.me 2.7.7 → 2.7.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +82 -58
- package/docs/Me.html +697 -0
- package/docs/README.md +92 -0
- package/docs/ThisMe.html +690 -0
- package/docs/cli_main.js.html +341 -0
- package/docs/fonts/OpenSans-Bold-webfont.eot +0 -0
- package/docs/fonts/OpenSans-Bold-webfont.svg +1830 -0
- package/docs/fonts/OpenSans-Bold-webfont.woff +0 -0
- package/docs/fonts/OpenSans-BoldItalic-webfont.eot +0 -0
- package/docs/fonts/OpenSans-BoldItalic-webfont.svg +1830 -0
- package/docs/fonts/OpenSans-BoldItalic-webfont.woff +0 -0
- package/docs/fonts/OpenSans-Italic-webfont.eot +0 -0
- package/docs/fonts/OpenSans-Italic-webfont.svg +1830 -0
- package/docs/fonts/OpenSans-Italic-webfont.woff +0 -0
- package/docs/fonts/OpenSans-Light-webfont.eot +0 -0
- package/docs/fonts/OpenSans-Light-webfont.svg +1831 -0
- package/docs/fonts/OpenSans-Light-webfont.woff +0 -0
- package/docs/fonts/OpenSans-LightItalic-webfont.eot +0 -0
- package/docs/fonts/OpenSans-LightItalic-webfont.svg +1835 -0
- package/docs/fonts/OpenSans-LightItalic-webfont.woff +0 -0
- package/docs/fonts/OpenSans-Regular-webfont.eot +0 -0
- package/docs/fonts/OpenSans-Regular-webfont.svg +1831 -0
- package/docs/fonts/OpenSans-Regular-webfont.woff +0 -0
- package/docs/global.html +454 -0
- package/docs/index.html +258 -0
- package/docs/me.js.html +211 -0
- package/docs/module-CLI.html +963 -0
- package/docs/neurons_logo.png +0 -0
- package/docs/scripts/app.min.js +1 -0
- package/docs/scripts/linenumber.js +26 -0
- package/docs/scripts/prettify/Apache-License-2.0.txt +202 -0
- package/docs/scripts/prettify/lang-css.js +2 -0
- package/docs/scripts/prettify/prettify.js +28 -0
- package/docs/scripts/search.js +39 -0
- package/docs/styles/app.min.css +1 -0
- package/docs/styles/iframe.css +13 -0
- package/docs/styles/jsdoc-default.css +358 -0
- package/docs/styles/prettify-jsdoc.css +111 -0
- package/docs/styles/prettify-tomorrow.css +132 -0
- package/docs/styles/reset.css +44 -0
- package/jsdoc.json +43 -0
- package/package.json +20 -29
- package/src/cli/main.js +177 -0
- package/src/env.js +8 -0
- package/{me.html → src/me.html} +1 -0
- package/src/me.js +47 -0
- package/src/os/unix/install_me.sh +5 -0
- package/src/this/video.js +0 -0
- package/Me.js +0 -71
- package/crypto/crypto-browser.js +0 -20
- package/crypto/crypto-node.js +0 -16
- package/crypto/hash/hashWorker.js +0 -11
- package/crypto/hash/hashing.js +0 -43
- package/demo.js +0 -12
- package/main.js +0 -77
- package/me2.js +0 -57
- package/src/errorHandler.js +0 -9
- package/test.js +0 -36
- package/testHashIt.js +0 -3
- package/webpack.config.js +0 -18
- /package/{this/dir.js → index.js} +0 -0
- /package/{this/file.js → src/this/dir.js} +0 -0
- /package/{this/url.js → src/this/file.js} +0 -0
- /package/{this/video.js → src/this/url.js} +0 -0
package/webpack.config.js
DELETED
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
const path = require('path');
|
|
2
|
-
|
|
3
|
-
module.exports = {
|
|
4
|
-
entry: './me.js', // Your main file
|
|
5
|
-
output: {
|
|
6
|
-
filename: 'bundle.js', // Output bundle file
|
|
7
|
-
path: path.resolve(__dirname, 'dist') // Directory where bundle.js will be placed
|
|
8
|
-
},
|
|
9
|
-
mode: 'production', // Use 'development' for debugging and development purposes
|
|
10
|
-
module: {
|
|
11
|
-
rules: [
|
|
12
|
-
// You can add loaders here if needed, for instance, for processing other file types or transpiling code.
|
|
13
|
-
]
|
|
14
|
-
},
|
|
15
|
-
plugins: [
|
|
16
|
-
// Add any webpack plugins here if necessary.
|
|
17
|
-
]
|
|
18
|
-
};
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|