Adding dist/ build
Signed-off-by: Georg <georg@lysergic.dev>
This commit is contained in:
parent
b3dd3db30b
commit
b97800f42a
3
.browserslistrc
Normal file
3
.browserslistrc
Normal file
@ -0,0 +1,3 @@
|
||||
> 1%
|
||||
last 2 versions
|
||||
not ie <= 8
|
9
.editorconfig
Normal file
9
.editorconfig
Normal file
@ -0,0 +1,9 @@
|
||||
root = true
|
||||
|
||||
[*]
|
||||
charset = utf-8
|
||||
indent_style = space
|
||||
indent_size = 4
|
||||
end_of_line = lf
|
||||
insert_final_newline = true
|
||||
trim_trailing_whitespace = true
|
3
.eslintignore
Normal file
3
.eslintignore
Normal file
@ -0,0 +1,3 @@
|
||||
build/*.js
|
||||
config/*.js
|
||||
tests/unit/coverage/
|
77
.eslintrc.js
Normal file
77
.eslintrc.js
Normal file
@ -0,0 +1,77 @@
|
||||
const rulesDirPlugin = require('eslint-plugin-rulesdir');
|
||||
rulesDirPlugin.RULES_DIR = 'build/eslint/rules/';
|
||||
|
||||
module.exports = {
|
||||
root: true,
|
||||
parserOptions: {
|
||||
parser: 'babel-eslint',
|
||||
sourceType: 'module'
|
||||
},
|
||||
extends: [
|
||||
'plugin:vue/recommended',
|
||||
'@vue/airbnb',
|
||||
'standard'
|
||||
],
|
||||
env: {
|
||||
'browser': true,
|
||||
},
|
||||
// required to lint *.vue files
|
||||
plugins: [
|
||||
'rulesdir',
|
||||
'vue',
|
||||
],
|
||||
// add your custom rules here
|
||||
rules: {
|
||||
'no-console': process.env.NODE_ENV === 'production' ? 'error' : 'off',
|
||||
'no-debugger': process.env.NODE_ENV === 'production' ? 'error' : 'off',
|
||||
'rulesdir/class-name-prefix': 'warn',
|
||||
'class-methods-use-this': 0,
|
||||
'comma-dangle': ['error', {
|
||||
'arrays': 'always-multiline',
|
||||
'objects': 'always-multiline',
|
||||
'imports': 'never',
|
||||
'exports': 'never',
|
||||
'functions': 'ignore'
|
||||
}],
|
||||
'import/extensions': 0,
|
||||
'import/no-cycle': 0,
|
||||
'import/no-extraneous-dependencies': 0,
|
||||
'import/no-unresolved': 0,
|
||||
'import/prefer-default-export': 0,
|
||||
'indent': ['error', 4],
|
||||
'max-classes-per-file': 0,
|
||||
'no-continue': 0,
|
||||
'no-else-return': 0,
|
||||
'no-multi-assign': 0,
|
||||
'no-param-reassign': ['error', { 'props': false }],
|
||||
'no-plusplus': 0,
|
||||
'no-prototype-builtins': 0,
|
||||
'no-control-regex': 0,
|
||||
'object-shorthand': 0,
|
||||
'operator-linebreak': 0,
|
||||
'prefer-const': 0,
|
||||
'prefer-destructuring': 0,
|
||||
'prefer-object-spread': 0,
|
||||
'prefer-promise-reject-errors': 0,
|
||||
'prefer-template': 0,
|
||||
'semi': ['error', 'always'],
|
||||
'space-before-function-paren': ['error', 'never'],
|
||||
'vue/html-indent': ['error', 4],
|
||||
'vue/max-attributes-per-line': 0,
|
||||
'vue/multiline-html-element-content-newline': 0,
|
||||
'vue/no-unused-components': 0,
|
||||
'vue/no-v-html': 0,
|
||||
'vue/require-prop-types': 0,
|
||||
'vue/require-default-prop': 0,
|
||||
'vue/singleline-html-element-content-newline': 0,
|
||||
},
|
||||
overrides: [{
|
||||
files: [
|
||||
'**/__tests__/*.{j,t}s?(x)',
|
||||
'**/tests/unit/**/*.spec.{j,t}s?(x)',
|
||||
],
|
||||
env: {
|
||||
jest: true,
|
||||
},
|
||||
}],
|
||||
};
|
27
.gitignore
vendored
27
.gitignore
vendored
@ -1,3 +1,26 @@
|
||||
.DS_Store
|
||||
srcdocs/
|
||||
dist/
|
||||
node_modules/
|
||||
package-lock.json
|
||||
yarn.lock
|
||||
src/res/locales/available.json
|
||||
static/config.local.json
|
||||
tests/coverage
|
||||
|
||||
|
||||
# local env files
|
||||
.env.local
|
||||
.env.*.local
|
||||
|
||||
# Log files
|
||||
npm-debug.log*
|
||||
yarn-debug.log*
|
||||
yarn-error.log*
|
||||
|
||||
# Editor directories and files
|
||||
.idea
|
||||
.vscode
|
||||
*.suo
|
||||
*.ntvs*
|
||||
*.njsproj
|
||||
*.sln
|
||||
*.sw*
|
||||
|
5
.stylelintignore
Normal file
5
.stylelintignore
Normal file
@ -0,0 +1,5 @@
|
||||
/build/
|
||||
/config/
|
||||
/dist/
|
||||
/node_modules/
|
||||
/test/unit/coverage/
|
8
.stylelintrc.js
Normal file
8
.stylelintrc.js
Normal file
@ -0,0 +1,8 @@
|
||||
module.exports = {
|
||||
extends: 'stylelint-config-standard',
|
||||
rules: {
|
||||
indentation: 4,
|
||||
'no-descending-specificity': null,
|
||||
'declaration-no-important': true,
|
||||
},
|
||||
};
|
4
node_modules/.yarn-integrity
generated
vendored
4
node_modules/.yarn-integrity
generated
vendored
@ -56,7 +56,8 @@
|
||||
"vue@^2.6.11",
|
||||
"webpack@^4.42.1",
|
||||
"whatwg-fetch@^3.0.0",
|
||||
"xhr@^2.5.0"
|
||||
"xhr@^2.5.0",
|
||||
"yarn@^1.22.10"
|
||||
],
|
||||
"lockfileEntries": {
|
||||
"@babel/code-frame@^7.0.0": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.10.4.tgz",
|
||||
@ -2167,6 +2168,7 @@
|
||||
"yargs@^13.3.0": "https://registry.npmjs.org/yargs/-/yargs-13.3.2.tgz",
|
||||
"yargs@^13.3.2": "https://registry.npmjs.org/yargs/-/yargs-13.3.2.tgz",
|
||||
"yargs@^15.0.0": "https://registry.npmjs.org/yargs/-/yargs-15.4.1.tgz",
|
||||
"yarn@^1.22.10": "https://registry.npmjs.org/yarn/-/yarn-1.22.10.tgz",
|
||||
"yorkie@^2.0.0": "https://registry.npmjs.org/yorkie/-/yorkie-2.0.0.tgz"
|
||||
},
|
||||
"files": [],
|
||||
|
@ -1,25 +1,61 @@
|
||||
{
|
||||
"name": "@babel/helper-function-name",
|
||||
"version": "7.14.5",
|
||||
"description": "Helper function to change the property 'name' of every function",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/babel/babel.git",
|
||||
"directory": "packages/babel-helper-function-name"
|
||||
"_args": [
|
||||
[
|
||||
"@babel/helper-function-name@7.14.5",
|
||||
"/media/veracrypt1/GitHub/kiwiirc-custom"
|
||||
]
|
||||
],
|
||||
"_development": true,
|
||||
"_from": "@babel/helper-function-name@7.14.5",
|
||||
"_id": "@babel/helper-function-name@7.14.5",
|
||||
"_inBundle": false,
|
||||
"_integrity": "sha512-Gjna0AsXWfFvrAuX+VKcN/aNNWonizBj39yGwUzVDVTlMYJMK2Wp6xdpy72mfArFq5uK+NOuexfzZlzI1z9+AQ==",
|
||||
"_location": "/@babel/helper-define-polyfill-provider/@babel/helper-function-name",
|
||||
"_phantomChildren": {},
|
||||
"_requested": {
|
||||
"type": "version",
|
||||
"registry": true,
|
||||
"raw": "@babel/helper-function-name@7.14.5",
|
||||
"name": "@babel/helper-function-name",
|
||||
"escapedName": "@babel%2fhelper-function-name",
|
||||
"scope": "@babel",
|
||||
"rawSpec": "7.14.5",
|
||||
"saveSpec": null,
|
||||
"fetchSpec": "7.14.5"
|
||||
},
|
||||
"homepage": "https://babel.dev/docs/en/next/babel-helper-function-name",
|
||||
"license": "MIT",
|
||||
"publishConfig": {
|
||||
"access": "public"
|
||||
"_requiredBy": [
|
||||
"/@babel/helper-define-polyfill-provider/@babel/traverse"
|
||||
],
|
||||
"_resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.14.5.tgz",
|
||||
"_spec": "7.14.5",
|
||||
"_where": "/media/veracrypt1/GitHub/kiwiirc-custom",
|
||||
"author": {
|
||||
"name": "The Babel Team",
|
||||
"url": "https://babel.dev/team"
|
||||
},
|
||||
"bugs": {
|
||||
"url": "https://github.com/babel/babel/issues"
|
||||
},
|
||||
"main": "./lib/index.js",
|
||||
"dependencies": {
|
||||
"@babel/helper-get-function-arity": "^7.14.5",
|
||||
"@babel/template": "^7.14.5",
|
||||
"@babel/types": "^7.14.5"
|
||||
},
|
||||
"description": "Helper function to change the property 'name' of every function",
|
||||
"engines": {
|
||||
"node": ">=6.9.0"
|
||||
},
|
||||
"author": "The Babel Team (https://babel.dev/team)"
|
||||
}
|
||||
"homepage": "https://babel.dev/docs/en/next/babel-helper-function-name",
|
||||
"license": "MIT",
|
||||
"main": "./lib/index.js",
|
||||
"name": "@babel/helper-function-name",
|
||||
"publishConfig": {
|
||||
"access": "public"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/babel/babel.git",
|
||||
"directory": "packages/babel-helper-function-name"
|
||||
},
|
||||
"version": "7.14.5"
|
||||
}
|
||||
|
@ -1,23 +1,59 @@
|
||||
{
|
||||
"name": "@babel/helper-get-function-arity",
|
||||
"version": "7.14.5",
|
||||
"description": "Helper function to get function arity",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/babel/babel.git",
|
||||
"directory": "packages/babel-helper-get-function-arity"
|
||||
"_args": [
|
||||
[
|
||||
"@babel/helper-get-function-arity@7.14.5",
|
||||
"/media/veracrypt1/GitHub/kiwiirc-custom"
|
||||
]
|
||||
],
|
||||
"_development": true,
|
||||
"_from": "@babel/helper-get-function-arity@7.14.5",
|
||||
"_id": "@babel/helper-get-function-arity@7.14.5",
|
||||
"_inBundle": false,
|
||||
"_integrity": "sha512-I1Db4Shst5lewOM4V+ZKJzQ0JGGaZ6VY1jYvMghRjqs6DWgxLCIyFt30GlnKkfUeFLpJt2vzbMVEXVSXlIFYUg==",
|
||||
"_location": "/@babel/helper-define-polyfill-provider/@babel/helper-get-function-arity",
|
||||
"_phantomChildren": {},
|
||||
"_requested": {
|
||||
"type": "version",
|
||||
"registry": true,
|
||||
"raw": "@babel/helper-get-function-arity@7.14.5",
|
||||
"name": "@babel/helper-get-function-arity",
|
||||
"escapedName": "@babel%2fhelper-get-function-arity",
|
||||
"scope": "@babel",
|
||||
"rawSpec": "7.14.5",
|
||||
"saveSpec": null,
|
||||
"fetchSpec": "7.14.5"
|
||||
},
|
||||
"homepage": "https://babel.dev/docs/en/next/babel-helper-get-function-arity",
|
||||
"license": "MIT",
|
||||
"publishConfig": {
|
||||
"access": "public"
|
||||
"_requiredBy": [
|
||||
"/@babel/helper-define-polyfill-provider/@babel/helper-function-name"
|
||||
],
|
||||
"_resolved": "https://registry.npmjs.org/@babel/helper-get-function-arity/-/helper-get-function-arity-7.14.5.tgz",
|
||||
"_spec": "7.14.5",
|
||||
"_where": "/media/veracrypt1/GitHub/kiwiirc-custom",
|
||||
"author": {
|
||||
"name": "The Babel Team",
|
||||
"url": "https://babel.dev/team"
|
||||
},
|
||||
"bugs": {
|
||||
"url": "https://github.com/babel/babel/issues"
|
||||
},
|
||||
"main": "./lib/index.js",
|
||||
"dependencies": {
|
||||
"@babel/types": "^7.14.5"
|
||||
},
|
||||
"description": "Helper function to get function arity",
|
||||
"engines": {
|
||||
"node": ">=6.9.0"
|
||||
},
|
||||
"author": "The Babel Team (https://babel.dev/team)"
|
||||
}
|
||||
"homepage": "https://babel.dev/docs/en/next/babel-helper-get-function-arity",
|
||||
"license": "MIT",
|
||||
"main": "./lib/index.js",
|
||||
"name": "@babel/helper-get-function-arity",
|
||||
"publishConfig": {
|
||||
"access": "public"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/babel/babel.git",
|
||||
"directory": "packages/babel-helper-get-function-arity"
|
||||
},
|
||||
"version": "7.14.5"
|
||||
}
|
||||
|
@ -1,27 +1,63 @@
|
||||
{
|
||||
"name": "@babel/helper-module-imports",
|
||||
"version": "7.14.5",
|
||||
"description": "Babel helper functions for inserting module loads",
|
||||
"author": "The Babel Team (https://babel.dev/team)",
|
||||
"homepage": "https://babel.dev/docs/en/next/babel-helper-module-imports",
|
||||
"license": "MIT",
|
||||
"publishConfig": {
|
||||
"access": "public"
|
||||
"_args": [
|
||||
[
|
||||
"@babel/helper-module-imports@7.14.5",
|
||||
"/media/veracrypt1/GitHub/kiwiirc-custom"
|
||||
]
|
||||
],
|
||||
"_development": true,
|
||||
"_from": "@babel/helper-module-imports@7.14.5",
|
||||
"_id": "@babel/helper-module-imports@7.14.5",
|
||||
"_inBundle": false,
|
||||
"_integrity": "sha512-SwrNHu5QWS84XlHwGYPDtCxcA0hrSlL2yhWYLgeOc0w7ccOl2qv4s/nARI0aYZW+bSwAL5CukeXA47B/1NKcnQ==",
|
||||
"_location": "/@babel/helper-define-polyfill-provider/@babel/helper-module-imports",
|
||||
"_phantomChildren": {},
|
||||
"_requested": {
|
||||
"type": "version",
|
||||
"registry": true,
|
||||
"raw": "@babel/helper-module-imports@7.14.5",
|
||||
"name": "@babel/helper-module-imports",
|
||||
"escapedName": "@babel%2fhelper-module-imports",
|
||||
"scope": "@babel",
|
||||
"rawSpec": "7.14.5",
|
||||
"saveSpec": null,
|
||||
"fetchSpec": "7.14.5"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/babel/babel.git",
|
||||
"directory": "packages/babel-helper-module-imports"
|
||||
"_requiredBy": [
|
||||
"/@babel/helper-define-polyfill-provider"
|
||||
],
|
||||
"_resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.14.5.tgz",
|
||||
"_spec": "7.14.5",
|
||||
"_where": "/media/veracrypt1/GitHub/kiwiirc-custom",
|
||||
"author": {
|
||||
"name": "The Babel Team",
|
||||
"url": "https://babel.dev/team"
|
||||
},
|
||||
"bugs": {
|
||||
"url": "https://github.com/babel/babel/issues"
|
||||
},
|
||||
"main": "./lib/index.js",
|
||||
"dependencies": {
|
||||
"@babel/types": "^7.14.5"
|
||||
},
|
||||
"description": "Babel helper functions for inserting module loads",
|
||||
"devDependencies": {
|
||||
"@babel/core": "7.14.5",
|
||||
"@babel/traverse": "7.14.5"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=6.9.0"
|
||||
}
|
||||
}
|
||||
},
|
||||
"homepage": "https://babel.dev/docs/en/next/babel-helper-module-imports",
|
||||
"license": "MIT",
|
||||
"main": "./lib/index.js",
|
||||
"name": "@babel/helper-module-imports",
|
||||
"publishConfig": {
|
||||
"access": "public"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/babel/babel.git",
|
||||
"directory": "packages/babel-helper-module-imports"
|
||||
},
|
||||
"version": "7.14.5"
|
||||
}
|
||||
|
@ -1,20 +1,56 @@
|
||||
{
|
||||
"name": "@babel/helper-plugin-utils",
|
||||
"version": "7.14.5",
|
||||
"_args": [
|
||||
[
|
||||
"@babel/helper-plugin-utils@7.14.5",
|
||||
"/media/veracrypt1/GitHub/kiwiirc-custom"
|
||||
]
|
||||
],
|
||||
"_development": true,
|
||||
"_from": "@babel/helper-plugin-utils@7.14.5",
|
||||
"_id": "@babel/helper-plugin-utils@7.14.5",
|
||||
"_inBundle": false,
|
||||
"_integrity": "sha512-/37qQCE3K0vvZKwoK4XU/irIJQdIfCJuhU5eKnNxpFDsOkgFaUAwbv+RYw6eYgsC0E4hS7r5KqGULUogqui0fQ==",
|
||||
"_location": "/@babel/helper-define-polyfill-provider/@babel/helper-plugin-utils",
|
||||
"_phantomChildren": {},
|
||||
"_requested": {
|
||||
"type": "version",
|
||||
"registry": true,
|
||||
"raw": "@babel/helper-plugin-utils@7.14.5",
|
||||
"name": "@babel/helper-plugin-utils",
|
||||
"escapedName": "@babel%2fhelper-plugin-utils",
|
||||
"scope": "@babel",
|
||||
"rawSpec": "7.14.5",
|
||||
"saveSpec": null,
|
||||
"fetchSpec": "7.14.5"
|
||||
},
|
||||
"_requiredBy": [
|
||||
"/@babel/helper-define-polyfill-provider"
|
||||
],
|
||||
"_resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.14.5.tgz",
|
||||
"_spec": "7.14.5",
|
||||
"_where": "/media/veracrypt1/GitHub/kiwiirc-custom",
|
||||
"author": {
|
||||
"name": "The Babel Team",
|
||||
"url": "https://babel.dev/team"
|
||||
},
|
||||
"bugs": {
|
||||
"url": "https://github.com/babel/babel/issues"
|
||||
},
|
||||
"description": "General utilities for plugins to use",
|
||||
"author": "The Babel Team (https://babel.dev/team)",
|
||||
"engines": {
|
||||
"node": ">=6.9.0"
|
||||
},
|
||||
"homepage": "https://babel.dev/docs/en/next/babel-helper-plugin-utils",
|
||||
"license": "MIT",
|
||||
"main": "./lib/index.js",
|
||||
"name": "@babel/helper-plugin-utils",
|
||||
"publishConfig": {
|
||||
"access": "public"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/babel/babel.git",
|
||||
"url": "git+https://github.com/babel/babel.git",
|
||||
"directory": "packages/babel-helper-plugin-utils"
|
||||
},
|
||||
"main": "./lib/index.js",
|
||||
"engines": {
|
||||
"node": ">=6.9.0"
|
||||
}
|
||||
}
|
||||
"version": "7.14.5"
|
||||
}
|
||||
|
@ -1,23 +1,59 @@
|
||||
{
|
||||
"name": "@babel/helper-split-export-declaration",
|
||||
"version": "7.14.5",
|
||||
"description": "",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/babel/babel.git",
|
||||
"directory": "packages/babel-helper-split-export-declaration"
|
||||
"_args": [
|
||||
[
|
||||
"@babel/helper-split-export-declaration@7.14.5",
|
||||
"/media/veracrypt1/GitHub/kiwiirc-custom"
|
||||
]
|
||||
],
|
||||
"_development": true,
|
||||
"_from": "@babel/helper-split-export-declaration@7.14.5",
|
||||
"_id": "@babel/helper-split-export-declaration@7.14.5",
|
||||
"_inBundle": false,
|
||||
"_integrity": "sha512-hprxVPu6e5Kdp2puZUmvOGjaLv9TCe58E/Fl6hRq4YiVQxIcNvuq6uTM2r1mT/oPskuS9CgR+I94sqAYv0NGKA==",
|
||||
"_location": "/@babel/helper-define-polyfill-provider/@babel/helper-split-export-declaration",
|
||||
"_phantomChildren": {},
|
||||
"_requested": {
|
||||
"type": "version",
|
||||
"registry": true,
|
||||
"raw": "@babel/helper-split-export-declaration@7.14.5",
|
||||
"name": "@babel/helper-split-export-declaration",
|
||||
"escapedName": "@babel%2fhelper-split-export-declaration",
|
||||
"scope": "@babel",
|
||||
"rawSpec": "7.14.5",
|
||||
"saveSpec": null,
|
||||
"fetchSpec": "7.14.5"
|
||||
},
|
||||
"homepage": "https://babel.dev/docs/en/next/babel-helper-split-export-declaration",
|
||||
"license": "MIT",
|
||||
"publishConfig": {
|
||||
"access": "public"
|
||||
"_requiredBy": [
|
||||
"/@babel/helper-define-polyfill-provider/@babel/traverse"
|
||||
],
|
||||
"_resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.14.5.tgz",
|
||||
"_spec": "7.14.5",
|
||||
"_where": "/media/veracrypt1/GitHub/kiwiirc-custom",
|
||||
"author": {
|
||||
"name": "The Babel Team",
|
||||
"url": "https://babel.dev/team"
|
||||
},
|
||||
"bugs": {
|
||||
"url": "https://github.com/babel/babel/issues"
|
||||
},
|
||||
"main": "./lib/index.js",
|
||||
"dependencies": {
|
||||
"@babel/types": "^7.14.5"
|
||||
},
|
||||
"description": ">",
|
||||
"engines": {
|
||||
"node": ">=6.9.0"
|
||||
},
|
||||
"author": "The Babel Team (https://babel.dev/team)"
|
||||
}
|
||||
"homepage": "https://babel.dev/docs/en/next/babel-helper-split-export-declaration",
|
||||
"license": "MIT",
|
||||
"main": "./lib/index.js",
|
||||
"name": "@babel/helper-split-export-declaration",
|
||||
"publishConfig": {
|
||||
"access": "public"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/babel/babel.git",
|
||||
"directory": "packages/babel-helper-split-export-declaration"
|
||||
},
|
||||
"version": "7.14.5"
|
||||
}
|
||||
|
@ -1,26 +1,61 @@
|
||||
{
|
||||
"name": "@babel/template",
|
||||
"version": "7.14.5",
|
||||
"description": "Generate an AST from a string template.",
|
||||
"author": "The Babel Team (https://babel.dev/team)",
|
||||
"homepage": "https://babel.dev/docs/en/next/babel-template",
|
||||
"bugs": "https://github.com/babel/babel/issues?utf8=%E2%9C%93&q=is%3Aissue+label%3A%22pkg%3A%20template%22+is%3Aopen",
|
||||
"license": "MIT",
|
||||
"publishConfig": {
|
||||
"access": "public"
|
||||
"_args": [
|
||||
[
|
||||
"@babel/template@7.14.5",
|
||||
"/media/veracrypt1/GitHub/kiwiirc-custom"
|
||||
]
|
||||
],
|
||||
"_development": true,
|
||||
"_from": "@babel/template@7.14.5",
|
||||
"_id": "@babel/template@7.14.5",
|
||||
"_inBundle": false,
|
||||
"_integrity": "sha512-6Z3Po85sfxRGachLULUhOmvAaOo7xCvqGQtxINai2mEGPFm6pQ4z5QInFnUrRpfoSV60BnjyF5F3c+15fxFV1g==",
|
||||
"_location": "/@babel/helper-define-polyfill-provider/@babel/template",
|
||||
"_phantomChildren": {},
|
||||
"_requested": {
|
||||
"type": "version",
|
||||
"registry": true,
|
||||
"raw": "@babel/template@7.14.5",
|
||||
"name": "@babel/template",
|
||||
"escapedName": "@babel%2ftemplate",
|
||||
"scope": "@babel",
|
||||
"rawSpec": "7.14.5",
|
||||
"saveSpec": null,
|
||||
"fetchSpec": "7.14.5"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/babel/babel.git",
|
||||
"directory": "packages/babel-template"
|
||||
"_requiredBy": [
|
||||
"/@babel/helper-define-polyfill-provider/@babel/helper-function-name"
|
||||
],
|
||||
"_resolved": "https://registry.npmjs.org/@babel/template/-/template-7.14.5.tgz",
|
||||
"_spec": "7.14.5",
|
||||
"_where": "/media/veracrypt1/GitHub/kiwiirc-custom",
|
||||
"author": {
|
||||
"name": "The Babel Team",
|
||||
"url": "https://babel.dev/team"
|
||||
},
|
||||
"bugs": {
|
||||
"url": "https://github.com/babel/babel/issues?utf8=%E2%9C%93&q=is%3Aissue+label%3A%22pkg%3A%20template%22+is%3Aopen"
|
||||
},
|
||||
"main": "./lib/index.js",
|
||||
"dependencies": {
|
||||
"@babel/code-frame": "^7.14.5",
|
||||
"@babel/parser": "^7.14.5",
|
||||
"@babel/types": "^7.14.5"
|
||||
},
|
||||
"description": "Generate an AST from a string template.",
|
||||
"engines": {
|
||||
"node": ">=6.9.0"
|
||||
}
|
||||
}
|
||||
},
|
||||
"homepage": "https://babel.dev/docs/en/next/babel-template",
|
||||
"license": "MIT",
|
||||
"main": "./lib/index.js",
|
||||
"name": "@babel/template",
|
||||
"publishConfig": {
|
||||
"access": "public"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/babel/babel.git",
|
||||
"directory": "packages/babel-template"
|
||||
},
|
||||
"version": "7.14.5"
|
||||
}
|
||||
|
@ -1,25 +1,62 @@
|
||||
{
|
||||
"name": "@babel/helper-function-name",
|
||||
"version": "7.14.5",
|
||||
"description": "Helper function to change the property 'name' of every function",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/babel/babel.git",
|
||||
"directory": "packages/babel-helper-function-name"
|
||||
"_args": [
|
||||
[
|
||||
"@babel/helper-function-name@7.14.5",
|
||||
"/media/veracrypt1/GitHub/kiwiirc-custom"
|
||||
]
|
||||
],
|
||||
"_development": true,
|
||||
"_from": "@babel/helper-function-name@7.14.5",
|
||||
"_id": "@babel/helper-function-name@7.14.5",
|
||||
"_inBundle": false,
|
||||
"_integrity": "sha512-Gjna0AsXWfFvrAuX+VKcN/aNNWonizBj39yGwUzVDVTlMYJMK2Wp6xdpy72mfArFq5uK+NOuexfzZlzI1z9+AQ==",
|
||||
"_location": "/@babel/helper-wrap-function/@babel/helper-function-name",
|
||||
"_phantomChildren": {},
|
||||
"_requested": {
|
||||
"type": "version",
|
||||
"registry": true,
|
||||
"raw": "@babel/helper-function-name@7.14.5",
|
||||
"name": "@babel/helper-function-name",
|
||||
"escapedName": "@babel%2fhelper-function-name",
|
||||
"scope": "@babel",
|
||||
"rawSpec": "7.14.5",
|
||||
"saveSpec": null,
|
||||
"fetchSpec": "7.14.5"
|
||||
},
|
||||
"homepage": "https://babel.dev/docs/en/next/babel-helper-function-name",
|
||||
"license": "MIT",
|
||||
"publishConfig": {
|
||||
"access": "public"
|
||||
"_requiredBy": [
|
||||
"/@babel/helper-wrap-function",
|
||||
"/@babel/helper-wrap-function/@babel/traverse"
|
||||
],
|
||||
"_resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.14.5.tgz",
|
||||
"_spec": "7.14.5",
|
||||
"_where": "/media/veracrypt1/GitHub/kiwiirc-custom",
|
||||
"author": {
|
||||
"name": "The Babel Team",
|
||||
"url": "https://babel.dev/team"
|
||||
},
|
||||
"bugs": {
|
||||
"url": "https://github.com/babel/babel/issues"
|
||||
},
|
||||
"main": "./lib/index.js",
|
||||
"dependencies": {
|
||||
"@babel/helper-get-function-arity": "^7.14.5",
|
||||
"@babel/template": "^7.14.5",
|
||||
"@babel/types": "^7.14.5"
|
||||
},
|
||||
"description": "Helper function to change the property 'name' of every function",
|
||||
"engines": {
|
||||
"node": ">=6.9.0"
|
||||
},
|
||||
"author": "The Babel Team (https://babel.dev/team)"
|
||||
}
|
||||
"homepage": "https://babel.dev/docs/en/next/babel-helper-function-name",
|
||||
"license": "MIT",
|
||||
"main": "./lib/index.js",
|
||||
"name": "@babel/helper-function-name",
|
||||
"publishConfig": {
|
||||
"access": "public"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/babel/babel.git",
|
||||
"directory": "packages/babel-helper-function-name"
|
||||
},
|
||||
"version": "7.14.5"
|
||||
}
|
||||
|
@ -1,23 +1,59 @@
|
||||
{
|
||||
"name": "@babel/helper-get-function-arity",
|
||||
"version": "7.14.5",
|
||||
"description": "Helper function to get function arity",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/babel/babel.git",
|
||||
"directory": "packages/babel-helper-get-function-arity"
|
||||
"_args": [
|
||||
[
|
||||
"@babel/helper-get-function-arity@7.14.5",
|
||||
"/media/veracrypt1/GitHub/kiwiirc-custom"
|
||||
]
|
||||
],
|
||||
"_development": true,
|
||||
"_from": "@babel/helper-get-function-arity@7.14.5",
|
||||
"_id": "@babel/helper-get-function-arity@7.14.5",
|
||||
"_inBundle": false,
|
||||
"_integrity": "sha512-I1Db4Shst5lewOM4V+ZKJzQ0JGGaZ6VY1jYvMghRjqs6DWgxLCIyFt30GlnKkfUeFLpJt2vzbMVEXVSXlIFYUg==",
|
||||
"_location": "/@babel/helper-wrap-function/@babel/helper-get-function-arity",
|
||||
"_phantomChildren": {},
|
||||
"_requested": {
|
||||
"type": "version",
|
||||
"registry": true,
|
||||
"raw": "@babel/helper-get-function-arity@7.14.5",
|
||||
"name": "@babel/helper-get-function-arity",
|
||||
"escapedName": "@babel%2fhelper-get-function-arity",
|
||||
"scope": "@babel",
|
||||
"rawSpec": "7.14.5",
|
||||
"saveSpec": null,
|
||||
"fetchSpec": "7.14.5"
|
||||
},
|
||||
"homepage": "https://babel.dev/docs/en/next/babel-helper-get-function-arity",
|
||||
"license": "MIT",
|
||||
"publishConfig": {
|
||||
"access": "public"
|
||||
"_requiredBy": [
|
||||
"/@babel/helper-wrap-function/@babel/helper-function-name"
|
||||
],
|
||||
"_resolved": "https://registry.npmjs.org/@babel/helper-get-function-arity/-/helper-get-function-arity-7.14.5.tgz",
|
||||
"_spec": "7.14.5",
|
||||
"_where": "/media/veracrypt1/GitHub/kiwiirc-custom",
|
||||
"author": {
|
||||
"name": "The Babel Team",
|
||||
"url": "https://babel.dev/team"
|
||||
},
|
||||
"bugs": {
|
||||
"url": "https://github.com/babel/babel/issues"
|
||||
},
|
||||
"main": "./lib/index.js",
|
||||
"dependencies": {
|
||||
"@babel/types": "^7.14.5"
|
||||
},
|
||||
"description": "Helper function to get function arity",
|
||||
"engines": {
|
||||
"node": ">=6.9.0"
|
||||
},
|
||||
"author": "The Babel Team (https://babel.dev/team)"
|
||||
}
|
||||
"homepage": "https://babel.dev/docs/en/next/babel-helper-get-function-arity",
|
||||
"license": "MIT",
|
||||
"main": "./lib/index.js",
|
||||
"name": "@babel/helper-get-function-arity",
|
||||
"publishConfig": {
|
||||
"access": "public"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/babel/babel.git",
|
||||
"directory": "packages/babel-helper-get-function-arity"
|
||||
},
|
||||
"version": "7.14.5"
|
||||
}
|
||||
|
@ -1,23 +1,59 @@
|
||||
{
|
||||
"name": "@babel/helper-split-export-declaration",
|
||||
"version": "7.14.5",
|
||||
"description": "",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/babel/babel.git",
|
||||
"directory": "packages/babel-helper-split-export-declaration"
|
||||
"_args": [
|
||||
[
|
||||
"@babel/helper-split-export-declaration@7.14.5",
|
||||
"/media/veracrypt1/GitHub/kiwiirc-custom"
|
||||
]
|
||||
],
|
||||
"_development": true,
|
||||
"_from": "@babel/helper-split-export-declaration@7.14.5",
|
||||
"_id": "@babel/helper-split-export-declaration@7.14.5",
|
||||
"_inBundle": false,
|
||||
"_integrity": "sha512-hprxVPu6e5Kdp2puZUmvOGjaLv9TCe58E/Fl6hRq4YiVQxIcNvuq6uTM2r1mT/oPskuS9CgR+I94sqAYv0NGKA==",
|
||||
"_location": "/@babel/helper-wrap-function/@babel/helper-split-export-declaration",
|
||||
"_phantomChildren": {},
|
||||
"_requested": {
|
||||
"type": "version",
|
||||
"registry": true,
|
||||
"raw": "@babel/helper-split-export-declaration@7.14.5",
|
||||
"name": "@babel/helper-split-export-declaration",
|
||||
"escapedName": "@babel%2fhelper-split-export-declaration",
|
||||
"scope": "@babel",
|
||||
"rawSpec": "7.14.5",
|
||||
"saveSpec": null,
|
||||
"fetchSpec": "7.14.5"
|
||||
},
|
||||
"homepage": "https://babel.dev/docs/en/next/babel-helper-split-export-declaration",
|
||||
"license": "MIT",
|
||||
"publishConfig": {
|
||||
"access": "public"
|
||||
"_requiredBy": [
|
||||
"/@babel/helper-wrap-function/@babel/traverse"
|
||||
],
|
||||
"_resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.14.5.tgz",
|
||||
"_spec": "7.14.5",
|
||||
"_where": "/media/veracrypt1/GitHub/kiwiirc-custom",
|
||||
"author": {
|
||||
"name": "The Babel Team",
|
||||
"url": "https://babel.dev/team"
|
||||
},
|
||||
"bugs": {
|
||||
"url": "https://github.com/babel/babel/issues"
|
||||
},
|
||||
"main": "./lib/index.js",
|
||||
"dependencies": {
|
||||
"@babel/types": "^7.14.5"
|
||||
},
|
||||
"description": ">",
|
||||
"engines": {
|
||||
"node": ">=6.9.0"
|
||||
},
|
||||
"author": "The Babel Team (https://babel.dev/team)"
|
||||
}
|
||||
"homepage": "https://babel.dev/docs/en/next/babel-helper-split-export-declaration",
|
||||
"license": "MIT",
|
||||
"main": "./lib/index.js",
|
||||
"name": "@babel/helper-split-export-declaration",
|
||||
"publishConfig": {
|
||||
"access": "public"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/babel/babel.git",
|
||||
"directory": "packages/babel-helper-split-export-declaration"
|
||||
},
|
||||
"version": "7.14.5"
|
||||
}
|
||||
|
64
node_modules/@babel/helpers/node_modules/@babel/helper-function-name/package.json
generated
vendored
64
node_modules/@babel/helpers/node_modules/@babel/helper-function-name/package.json
generated
vendored
@ -1,25 +1,61 @@
|
||||
{
|
||||
"name": "@babel/helper-function-name",
|
||||
"version": "7.14.5",
|
||||
"description": "Helper function to change the property 'name' of every function",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/babel/babel.git",
|
||||
"directory": "packages/babel-helper-function-name"
|
||||
"_args": [
|
||||
[
|
||||
"@babel/helper-function-name@7.14.5",
|
||||
"/media/veracrypt1/GitHub/kiwiirc-custom"
|
||||
]
|
||||
],
|
||||
"_development": true,
|
||||
"_from": "@babel/helper-function-name@7.14.5",
|
||||
"_id": "@babel/helper-function-name@7.14.5",
|
||||
"_inBundle": false,
|
||||
"_integrity": "sha512-Gjna0AsXWfFvrAuX+VKcN/aNNWonizBj39yGwUzVDVTlMYJMK2Wp6xdpy72mfArFq5uK+NOuexfzZlzI1z9+AQ==",
|
||||
"_location": "/@babel/helpers/@babel/helper-function-name",
|
||||
"_phantomChildren": {},
|
||||
"_requested": {
|
||||
"type": "version",
|
||||
"registry": true,
|
||||
"raw": "@babel/helper-function-name@7.14.5",
|
||||
"name": "@babel/helper-function-name",
|
||||
"escapedName": "@babel%2fhelper-function-name",
|
||||
"scope": "@babel",
|
||||
"rawSpec": "7.14.5",
|
||||
"saveSpec": null,
|
||||
"fetchSpec": "7.14.5"
|
||||
},
|
||||
"homepage": "https://babel.dev/docs/en/next/babel-helper-function-name",
|
||||
"license": "MIT",
|
||||
"publishConfig": {
|
||||
"access": "public"
|
||||
"_requiredBy": [
|
||||
"/@babel/helpers/@babel/traverse"
|
||||
],
|
||||
"_resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.14.5.tgz",
|
||||
"_spec": "7.14.5",
|
||||
"_where": "/media/veracrypt1/GitHub/kiwiirc-custom",
|
||||
"author": {
|
||||
"name": "The Babel Team",
|
||||
"url": "https://babel.dev/team"
|
||||
},
|
||||
"bugs": {
|
||||
"url": "https://github.com/babel/babel/issues"
|
||||
},
|
||||
"main": "./lib/index.js",
|
||||
"dependencies": {
|
||||
"@babel/helper-get-function-arity": "^7.14.5",
|
||||
"@babel/template": "^7.14.5",
|
||||
"@babel/types": "^7.14.5"
|
||||
},
|
||||
"description": "Helper function to change the property 'name' of every function",
|
||||
"engines": {
|
||||
"node": ">=6.9.0"
|
||||
},
|
||||
"author": "The Babel Team (https://babel.dev/team)"
|
||||
}
|
||||
"homepage": "https://babel.dev/docs/en/next/babel-helper-function-name",
|
||||
"license": "MIT",
|
||||
"main": "./lib/index.js",
|
||||
"name": "@babel/helper-function-name",
|
||||
"publishConfig": {
|
||||
"access": "public"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/babel/babel.git",
|
||||
"directory": "packages/babel-helper-function-name"
|
||||
},
|
||||
"version": "7.14.5"
|
||||
}
|
||||
|
64
node_modules/@babel/helpers/node_modules/@babel/helper-get-function-arity/package.json
generated
vendored
64
node_modules/@babel/helpers/node_modules/@babel/helper-get-function-arity/package.json
generated
vendored
@ -1,23 +1,59 @@
|
||||
{
|
||||
"name": "@babel/helper-get-function-arity",
|
||||
"version": "7.14.5",
|
||||
"description": "Helper function to get function arity",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/babel/babel.git",
|
||||
"directory": "packages/babel-helper-get-function-arity"
|
||||
"_args": [
|
||||
[
|
||||
"@babel/helper-get-function-arity@7.14.5",
|
||||
"/media/veracrypt1/GitHub/kiwiirc-custom"
|
||||
]
|
||||
],
|
||||
"_development": true,
|
||||
"_from": "@babel/helper-get-function-arity@7.14.5",
|
||||
"_id": "@babel/helper-get-function-arity@7.14.5",
|
||||
"_inBundle": false,
|
||||
"_integrity": "sha512-I1Db4Shst5lewOM4V+ZKJzQ0JGGaZ6VY1jYvMghRjqs6DWgxLCIyFt30GlnKkfUeFLpJt2vzbMVEXVSXlIFYUg==",
|
||||
"_location": "/@babel/helpers/@babel/helper-get-function-arity",
|
||||
"_phantomChildren": {},
|
||||
"_requested": {
|
||||
"type": "version",
|
||||
"registry": true,
|
||||
"raw": "@babel/helper-get-function-arity@7.14.5",
|
||||
"name": "@babel/helper-get-function-arity",
|
||||
"escapedName": "@babel%2fhelper-get-function-arity",
|
||||
"scope": "@babel",
|
||||
"rawSpec": "7.14.5",
|
||||
"saveSpec": null,
|
||||
"fetchSpec": "7.14.5"
|
||||
},
|
||||
"homepage": "https://babel.dev/docs/en/next/babel-helper-get-function-arity",
|
||||
"license": "MIT",
|
||||
"publishConfig": {
|
||||
"access": "public"
|
||||
"_requiredBy": [
|
||||
"/@babel/helpers/@babel/helper-function-name"
|
||||
],
|
||||
"_resolved": "https://registry.npmjs.org/@babel/helper-get-function-arity/-/helper-get-function-arity-7.14.5.tgz",
|
||||
"_spec": "7.14.5",
|
||||
"_where": "/media/veracrypt1/GitHub/kiwiirc-custom",
|
||||
"author": {
|
||||
"name": "The Babel Team",
|
||||
"url": "https://babel.dev/team"
|
||||
},
|
||||
"bugs": {
|
||||
"url": "https://github.com/babel/babel/issues"
|
||||
},
|
||||
"main": "./lib/index.js",
|
||||
"dependencies": {
|
||||
"@babel/types": "^7.14.5"
|
||||
},
|
||||
"description": "Helper function to get function arity",
|
||||
"engines": {
|
||||
"node": ">=6.9.0"
|
||||
},
|
||||
"author": "The Babel Team (https://babel.dev/team)"
|
||||
}
|
||||
"homepage": "https://babel.dev/docs/en/next/babel-helper-get-function-arity",
|
||||
"license": "MIT",
|
||||
"main": "./lib/index.js",
|
||||
"name": "@babel/helper-get-function-arity",
|
||||
"publishConfig": {
|
||||
"access": "public"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/babel/babel.git",
|
||||
"directory": "packages/babel-helper-get-function-arity"
|
||||
},
|
||||
"version": "7.14.5"
|
||||
}
|
||||
|
@ -1,23 +1,59 @@
|
||||
{
|
||||
"name": "@babel/helper-split-export-declaration",
|
||||
"version": "7.14.5",
|
||||
"description": "",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/babel/babel.git",
|
||||
"directory": "packages/babel-helper-split-export-declaration"
|
||||
"_args": [
|
||||
[
|
||||
"@babel/helper-split-export-declaration@7.14.5",
|
||||
"/media/veracrypt1/GitHub/kiwiirc-custom"
|
||||
]
|
||||
],
|
||||
"_development": true,
|
||||
"_from": "@babel/helper-split-export-declaration@7.14.5",
|
||||
"_id": "@babel/helper-split-export-declaration@7.14.5",
|
||||
"_inBundle": false,
|
||||
"_integrity": "sha512-hprxVPu6e5Kdp2puZUmvOGjaLv9TCe58E/Fl6hRq4YiVQxIcNvuq6uTM2r1mT/oPskuS9CgR+I94sqAYv0NGKA==",
|
||||
"_location": "/@babel/helpers/@babel/helper-split-export-declaration",
|
||||
"_phantomChildren": {},
|
||||
"_requested": {
|
||||
"type": "version",
|
||||
"registry": true,
|
||||
"raw": "@babel/helper-split-export-declaration@7.14.5",
|
||||
"name": "@babel/helper-split-export-declaration",
|
||||
"escapedName": "@babel%2fhelper-split-export-declaration",
|
||||
"scope": "@babel",
|
||||
"rawSpec": "7.14.5",
|
||||
"saveSpec": null,
|
||||
"fetchSpec": "7.14.5"
|
||||
},
|
||||
"homepage": "https://babel.dev/docs/en/next/babel-helper-split-export-declaration",
|
||||
"license": "MIT",
|
||||
"publishConfig": {
|
||||
"access": "public"
|
||||
"_requiredBy": [
|
||||
"/@babel/helpers/@babel/traverse"
|
||||
],
|
||||
"_resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.14.5.tgz",
|
||||
"_spec": "7.14.5",
|
||||
"_where": "/media/veracrypt1/GitHub/kiwiirc-custom",
|
||||
"author": {
|
||||
"name": "The Babel Team",
|
||||
"url": "https://babel.dev/team"
|
||||
},
|
||||
"bugs": {
|
||||
"url": "https://github.com/babel/babel/issues"
|
||||
},
|
||||
"main": "./lib/index.js",
|
||||
"dependencies": {
|
||||
"@babel/types": "^7.14.5"
|
||||
},
|
||||
"description": ">",
|
||||
"engines": {
|
||||
"node": ">=6.9.0"
|
||||
},
|
||||
"author": "The Babel Team (https://babel.dev/team)"
|
||||
}
|
||||
"homepage": "https://babel.dev/docs/en/next/babel-helper-split-export-declaration",
|
||||
"license": "MIT",
|
||||
"main": "./lib/index.js",
|
||||
"name": "@babel/helper-split-export-declaration",
|
||||
"publishConfig": {
|
||||
"access": "public"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/babel/babel.git",
|
||||
"directory": "packages/babel-helper-split-export-declaration"
|
||||
},
|
||||
"version": "7.14.5"
|
||||
}
|
||||
|
54
node_modules/@babel/preset-env/node_modules/@babel/helper-plugin-utils/package.json
generated
vendored
54
node_modules/@babel/preset-env/node_modules/@babel/helper-plugin-utils/package.json
generated
vendored
@ -1,20 +1,56 @@
|
||||
{
|
||||
"name": "@babel/helper-plugin-utils",
|
||||
"version": "7.14.5",
|
||||
"_args": [
|
||||
[
|
||||
"@babel/helper-plugin-utils@7.14.5",
|
||||
"/media/veracrypt1/GitHub/kiwiirc-custom"
|
||||
]
|
||||
],
|
||||
"_development": true,
|
||||
"_from": "@babel/helper-plugin-utils@7.14.5",
|
||||
"_id": "@babel/helper-plugin-utils@7.14.5",
|
||||
"_inBundle": false,
|
||||
"_integrity": "sha512-/37qQCE3K0vvZKwoK4XU/irIJQdIfCJuhU5eKnNxpFDsOkgFaUAwbv+RYw6eYgsC0E4hS7r5KqGULUogqui0fQ==",
|
||||
"_location": "/@babel/preset-env/@babel/helper-plugin-utils",
|
||||
"_phantomChildren": {},
|
||||
"_requested": {
|
||||
"type": "version",
|
||||
"registry": true,
|
||||
"raw": "@babel/helper-plugin-utils@7.14.5",
|
||||
"name": "@babel/helper-plugin-utils",
|
||||
"escapedName": "@babel%2fhelper-plugin-utils",
|
||||
"scope": "@babel",
|
||||
"rawSpec": "7.14.5",
|
||||
"saveSpec": null,
|
||||
"fetchSpec": "7.14.5"
|
||||
},
|
||||
"_requiredBy": [
|
||||
"/@babel/preset-env"
|
||||
],
|
||||
"_resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.14.5.tgz",
|
||||
"_spec": "7.14.5",
|
||||
"_where": "/media/veracrypt1/GitHub/kiwiirc-custom",
|
||||
"author": {
|
||||
"name": "The Babel Team",
|
||||
"url": "https://babel.dev/team"
|
||||
},
|
||||
"bugs": {
|
||||
"url": "https://github.com/babel/babel/issues"
|
||||
},
|
||||
"description": "General utilities for plugins to use",
|
||||
"author": "The Babel Team (https://babel.dev/team)",
|
||||
"engines": {
|
||||
"node": ">=6.9.0"
|
||||
},
|
||||
"homepage": "https://babel.dev/docs/en/next/babel-helper-plugin-utils",
|
||||
"license": "MIT",
|
||||
"main": "./lib/index.js",
|
||||
"name": "@babel/helper-plugin-utils",
|
||||
"publishConfig": {
|
||||
"access": "public"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/babel/babel.git",
|
||||
"url": "git+https://github.com/babel/babel.git",
|
||||
"directory": "packages/babel-helper-plugin-utils"
|
||||
},
|
||||
"main": "./lib/index.js",
|
||||
"engines": {
|
||||
"node": ">=6.9.0"
|
||||
}
|
||||
}
|
||||
"version": "7.14.5"
|
||||
}
|
||||
|
28
node_modules/deasync/build/Makefile
generated
vendored
28
node_modules/deasync/build/Makefile
generated
vendored
@ -121,17 +121,17 @@ endef
|
||||
# - quiet_cmd_foo is the brief-output summary of the command.
|
||||
|
||||
quiet_cmd_cc = CC($(TOOLSET)) $@
|
||||
cmd_cc = $(CC.$(TOOLSET)) -o $@ $< $(GYP_CFLAGS) $(DEPFLAGS) $(CFLAGS.$(TOOLSET)) -c
|
||||
cmd_cc = $(CC.$(TOOLSET)) $(GYP_CFLAGS) $(DEPFLAGS) $(CFLAGS.$(TOOLSET)) -c -o $@ $<
|
||||
|
||||
quiet_cmd_cxx = CXX($(TOOLSET)) $@
|
||||
cmd_cxx = $(CXX.$(TOOLSET)) -o $@ $< $(GYP_CXXFLAGS) $(DEPFLAGS) $(CXXFLAGS.$(TOOLSET)) -c
|
||||
cmd_cxx = $(CXX.$(TOOLSET)) $(GYP_CXXFLAGS) $(DEPFLAGS) $(CXXFLAGS.$(TOOLSET)) -c -o $@ $<
|
||||
|
||||
quiet_cmd_touch = TOUCH $@
|
||||
cmd_touch = touch $@
|
||||
|
||||
quiet_cmd_copy = COPY $@
|
||||
# send stderr to /dev/null to ignore messages when linking directories.
|
||||
cmd_copy = ln -f "$<" "$@" 2>/dev/null || (rm -rf "$@" && cp -af "$<" "$@")
|
||||
cmd_copy = rm -rf "$@" && cp -af "$<" "$@"
|
||||
|
||||
quiet_cmd_alink = AR($(TOOLSET)) $@
|
||||
cmd_alink = rm -f $@ && $(AR.$(TOOLSET)) crs $@ $(filter %.o,$^)
|
||||
@ -143,7 +143,7 @@ cmd_alink_thin = rm -f $@ && $(AR.$(TOOLSET)) crsT $@ $(filter %.o,$^)
|
||||
# special "figure out circular dependencies" flags around the entire
|
||||
# input list during linking.
|
||||
quiet_cmd_link = LINK($(TOOLSET)) $@
|
||||
cmd_link = $(LINK.$(TOOLSET)) -o $@ $(GYP_LDFLAGS) $(LDFLAGS.$(TOOLSET)) -Wl,--start-group $(LD_INPUTS) $(LIBS) -Wl,--end-group
|
||||
cmd_link = $(LINK.$(TOOLSET)) $(GYP_LDFLAGS) $(LDFLAGS.$(TOOLSET)) -o $@ -Wl,--start-group $(LD_INPUTS) $(LIBS) -Wl,--end-group
|
||||
|
||||
# We support two kinds of shared objects (.so):
|
||||
# 1) shared_library, which is just bundling together many dependent libraries
|
||||
@ -162,10 +162,10 @@ cmd_link = $(LINK.$(TOOLSET)) -o $@ $(GYP_LDFLAGS) $(LDFLAGS.$(TOOLSET)) -Wl,--s
|
||||
# - Set SONAME to the library filename so our binaries don't reference
|
||||
# the local, absolute paths used on the link command-line.
|
||||
quiet_cmd_solink = SOLINK($(TOOLSET)) $@
|
||||
cmd_solink = $(LINK.$(TOOLSET)) -o $@ -shared $(GYP_LDFLAGS) $(LDFLAGS.$(TOOLSET)) -Wl,-soname=$(@F) -Wl,--whole-archive $(LD_INPUTS) -Wl,--no-whole-archive $(LIBS)
|
||||
cmd_solink = $(LINK.$(TOOLSET)) -shared $(GYP_LDFLAGS) $(LDFLAGS.$(TOOLSET)) -Wl,-soname=$(@F) -o $@ -Wl,--whole-archive $(LD_INPUTS) -Wl,--no-whole-archive $(LIBS)
|
||||
|
||||
quiet_cmd_solink_module = SOLINK_MODULE($(TOOLSET)) $@
|
||||
cmd_solink_module = $(LINK.$(TOOLSET)) -o $@ -shared $(GYP_LDFLAGS) $(LDFLAGS.$(TOOLSET)) -Wl,-soname=$(@F) -Wl,--start-group $(filter-out FORCE_DO_CMD, $^) -Wl,--end-group $(LIBS)
|
||||
cmd_solink_module = $(LINK.$(TOOLSET)) -shared $(GYP_LDFLAGS) $(LDFLAGS.$(TOOLSET)) -Wl,-soname=$(@F) -o $@ -Wl,--start-group $(filter-out FORCE_DO_CMD, $^) -Wl,--end-group $(LIBS)
|
||||
|
||||
|
||||
# Define an escape_quotes function to escape single quotes.
|
||||
@ -268,10 +268,10 @@ $(obj).$(TOOLSET)/%.o: $(srcdir)/%.cpp FORCE_DO_CMD
|
||||
@$(call do_cmd,cxx,1)
|
||||
$(obj).$(TOOLSET)/%.o: $(srcdir)/%.cxx FORCE_DO_CMD
|
||||
@$(call do_cmd,cxx,1)
|
||||
$(obj).$(TOOLSET)/%.o: $(srcdir)/%.s FORCE_DO_CMD
|
||||
@$(call do_cmd,cc,1)
|
||||
$(obj).$(TOOLSET)/%.o: $(srcdir)/%.S FORCE_DO_CMD
|
||||
@$(call do_cmd,cc,1)
|
||||
$(obj).$(TOOLSET)/%.o: $(srcdir)/%.s FORCE_DO_CMD
|
||||
@$(call do_cmd,cc,1)
|
||||
|
||||
# Try building from generated source, too.
|
||||
$(obj).$(TOOLSET)/%.o: $(obj).$(TOOLSET)/%.c FORCE_DO_CMD
|
||||
@ -282,10 +282,10 @@ $(obj).$(TOOLSET)/%.o: $(obj).$(TOOLSET)/%.cpp FORCE_DO_CMD
|
||||
@$(call do_cmd,cxx,1)
|
||||
$(obj).$(TOOLSET)/%.o: $(obj).$(TOOLSET)/%.cxx FORCE_DO_CMD
|
||||
@$(call do_cmd,cxx,1)
|
||||
$(obj).$(TOOLSET)/%.o: $(obj).$(TOOLSET)/%.s FORCE_DO_CMD
|
||||
@$(call do_cmd,cc,1)
|
||||
$(obj).$(TOOLSET)/%.o: $(obj).$(TOOLSET)/%.S FORCE_DO_CMD
|
||||
@$(call do_cmd,cc,1)
|
||||
$(obj).$(TOOLSET)/%.o: $(obj).$(TOOLSET)/%.s FORCE_DO_CMD
|
||||
@$(call do_cmd,cc,1)
|
||||
|
||||
$(obj).$(TOOLSET)/%.o: $(obj)/%.c FORCE_DO_CMD
|
||||
@$(call do_cmd,cc,1)
|
||||
@ -295,10 +295,10 @@ $(obj).$(TOOLSET)/%.o: $(obj)/%.cpp FORCE_DO_CMD
|
||||
@$(call do_cmd,cxx,1)
|
||||
$(obj).$(TOOLSET)/%.o: $(obj)/%.cxx FORCE_DO_CMD
|
||||
@$(call do_cmd,cxx,1)
|
||||
$(obj).$(TOOLSET)/%.o: $(obj)/%.s FORCE_DO_CMD
|
||||
@$(call do_cmd,cc,1)
|
||||
$(obj).$(TOOLSET)/%.o: $(obj)/%.S FORCE_DO_CMD
|
||||
@$(call do_cmd,cc,1)
|
||||
$(obj).$(TOOLSET)/%.o: $(obj)/%.s FORCE_DO_CMD
|
||||
@$(call do_cmd,cc,1)
|
||||
|
||||
|
||||
ifeq ($(strip $(foreach prefix,$(NO_LOAD),\
|
||||
@ -308,8 +308,8 @@ ifeq ($(strip $(foreach prefix,$(NO_LOAD),\
|
||||
endif
|
||||
|
||||
quiet_cmd_regen_makefile = ACTION Regenerating $@
|
||||
cmd_regen_makefile = cd $(srcdir); /home/georg/.nvm/versions/node/v16.4.0/lib/node_modules/npm/node_modules/node-gyp/gyp/gyp_main.py -fmake --ignore-environment "-Dlibrary=shared_library" "-Dvisibility=default" "-Dnode_root_dir=/home/georg/.cache/node-gyp/16.4.0" "-Dnode_gyp_dir=/home/georg/.nvm/versions/node/v16.4.0/lib/node_modules/npm/node_modules/node-gyp" "-Dnode_lib_file=/home/georg/.cache/node-gyp/16.4.0/<(target_arch)/node.lib" "-Dmodule_root_dir=/media/veracrypt1/GitHub/kiwiirc/node_modules/deasync" "-Dnode_engine=v8" "--depth=." "-Goutput_dir=." "--generator-output=build" -I/media/veracrypt1/GitHub/kiwiirc/node_modules/deasync/build/config.gypi -I/home/georg/.nvm/versions/node/v16.4.0/lib/node_modules/npm/node_modules/node-gyp/addon.gypi -I/home/georg/.cache/node-gyp/16.4.0/include/node/common.gypi "--toplevel-dir=." binding.gyp
|
||||
Makefile: $(srcdir)/../../../../../../home/georg/.cache/node-gyp/16.4.0/include/node/common.gypi $(srcdir)/../../../../../../home/georg/.nvm/versions/node/v16.4.0/lib/node_modules/npm/node_modules/node-gyp/addon.gypi $(srcdir)/build/config.gypi $(srcdir)/binding.gyp
|
||||
cmd_regen_makefile = cd $(srcdir); /usr/local/lib/node_modules/npm/node_modules/node-gyp/gyp/gyp_main.py -fmake --ignore-environment "--toplevel-dir=." -I/media/veracrypt1/GitHub/kiwiirc-custom/node_modules/deasync/build/config.gypi -I/usr/local/lib/node_modules/npm/node_modules/node-gyp/addon.gypi -I/home/georg/.cache/node-gyp/16.2.0/include/node/common.gypi "--depth=." "-Goutput_dir=." "--generator-output=build" "-Dlibrary=shared_library" "-Dvisibility=default" "-Dnode_root_dir=/home/georg/.cache/node-gyp/16.2.0" "-Dnode_gyp_dir=/usr/local/lib/node_modules/npm/node_modules/node-gyp" "-Dnode_lib_file=/home/georg/.cache/node-gyp/16.2.0/<(target_arch)/node.lib" "-Dmodule_root_dir=/media/veracrypt1/GitHub/kiwiirc-custom/node_modules/deasync" "-Dnode_engine=v8" binding.gyp
|
||||
Makefile: $(srcdir)/../../../../../../home/georg/.cache/node-gyp/16.2.0/include/node/common.gypi $(srcdir)/build/config.gypi $(srcdir)/binding.gyp $(srcdir)/../../../../../../usr/local/lib/node_modules/npm/node_modules/node-gyp/addon.gypi
|
||||
$(call do_cmd,regen_makefile)
|
||||
|
||||
# "all" is a concatenation of the "all" targets from all the included
|
||||
|
2
node_modules/deasync/build/Release/.deps/Release/deasync.node.d
generated
vendored
2
node_modules/deasync/build/Release/.deps/Release/deasync.node.d
generated
vendored
@ -1 +1 @@
|
||||
cmd_Release/deasync.node := ln -f "Release/obj.target/deasync.node" "Release/deasync.node" 2>/dev/null || (rm -rf "Release/deasync.node" && cp -af "Release/obj.target/deasync.node" "Release/deasync.node")
|
||||
cmd_Release/deasync.node := rm -rf "Release/deasync.node" && cp -af "Release/obj.target/deasync.node" "Release/deasync.node"
|
||||
|
2
node_modules/deasync/build/Release/.deps/Release/obj.target/deasync.node.d
generated
vendored
2
node_modules/deasync/build/Release/.deps/Release/obj.target/deasync.node.d
generated
vendored
@ -1 +1 @@
|
||||
cmd_Release/obj.target/deasync.node := g++ -o Release/obj.target/deasync.node -shared -pthread -rdynamic -m64 -Wl,-soname=deasync.node -Wl,--start-group Release/obj.target/deasync/src/deasync.o -Wl,--end-group
|
||||
cmd_Release/obj.target/deasync.node := g++ -shared -pthread -rdynamic -m64 -Wl,-soname=deasync.node -o Release/obj.target/deasync.node -Wl,--start-group Release/obj.target/deasync/src/deasync.o -Wl,--end-group
|
||||
|
94
node_modules/deasync/build/Release/.deps/Release/obj.target/deasync/src/deasync.o.d
generated
vendored
94
node_modules/deasync/build/Release/.deps/Release/obj.target/deasync/src/deasync.o.d
generated
vendored
@ -1,49 +1,49 @@
|
||||
cmd_Release/obj.target/deasync/src/deasync.o := g++ -o Release/obj.target/deasync/src/deasync.o ../src/deasync.cc '-DNODE_GYP_MODULE_NAME=deasync' '-DUSING_UV_SHARED=1' '-DUSING_V8_SHARED=1' '-DV8_DEPRECATION_WARNINGS=1' '-DV8_DEPRECATION_WARNINGS' '-DV8_IMMINENT_DEPRECATION_WARNINGS' '-D_GLIBCXX_USE_CXX11_ABI=1' '-D_LARGEFILE_SOURCE' '-D_FILE_OFFSET_BITS=64' '-D__STDC_FORMAT_MACROS' '-DOPENSSL_NO_PINSHARED' '-DOPENSSL_THREADS' '-DBUILDING_NODE_EXTENSION' -I/home/georg/.cache/node-gyp/16.4.0/include/node -I/home/georg/.cache/node-gyp/16.4.0/src -I/home/georg/.cache/node-gyp/16.4.0/deps/openssl/config -I/home/georg/.cache/node-gyp/16.4.0/deps/openssl/openssl/include -I/home/georg/.cache/node-gyp/16.4.0/deps/uv/include -I/home/georg/.cache/node-gyp/16.4.0/deps/zlib -I/home/georg/.cache/node-gyp/16.4.0/deps/v8/include -I/media/veracrypt1/GitHub/kiwiirc/node_modules/node-addon-api -fPIC -pthread -Wall -Wextra -Wno-unused-parameter -m64 -O3 -fno-omit-frame-pointer -fno-rtti -std=gnu++14 -MMD -MF ./Release/.deps/Release/obj.target/deasync/src/deasync.o.d.raw -c
|
||||
cmd_Release/obj.target/deasync/src/deasync.o := g++ '-DNODE_GYP_MODULE_NAME=deasync' '-DUSING_UV_SHARED=1' '-DUSING_V8_SHARED=1' '-DV8_DEPRECATION_WARNINGS=1' '-DV8_DEPRECATION_WARNINGS' '-DV8_IMMINENT_DEPRECATION_WARNINGS' '-D_GLIBCXX_USE_CXX11_ABI=1' '-D_LARGEFILE_SOURCE' '-D_FILE_OFFSET_BITS=64' '-D__STDC_FORMAT_MACROS' '-DBUILDING_NODE_EXTENSION' -I/home/georg/.cache/node-gyp/16.2.0/include/node -I/home/georg/.cache/node-gyp/16.2.0/src -I/home/georg/.cache/node-gyp/16.2.0/deps/openssl/config -I/home/georg/.cache/node-gyp/16.2.0/deps/openssl/openssl/include -I/home/georg/.cache/node-gyp/16.2.0/deps/uv/include -I/home/georg/.cache/node-gyp/16.2.0/deps/zlib -I/home/georg/.cache/node-gyp/16.2.0/deps/v8/include -I/media/veracrypt1/GitHub/kiwiirc-custom/node_modules/node-addon-api -fPIC -pthread -Wall -Wextra -Wno-unused-parameter -m64 -O3 -fno-omit-frame-pointer -fno-rtti -std=gnu++14 -MMD -MF ./Release/.deps/Release/obj.target/deasync/src/deasync.o.d.raw -c -o Release/obj.target/deasync/src/deasync.o ../src/deasync.cc
|
||||
Release/obj.target/deasync/src/deasync.o: ../src/deasync.cc \
|
||||
/home/georg/.cache/node-gyp/16.4.0/include/node/uv.h \
|
||||
/home/georg/.cache/node-gyp/16.4.0/include/node/uv/errno.h \
|
||||
/home/georg/.cache/node-gyp/16.4.0/include/node/uv/version.h \
|
||||
/home/georg/.cache/node-gyp/16.4.0/include/node/uv/unix.h \
|
||||
/home/georg/.cache/node-gyp/16.4.0/include/node/uv/threadpool.h \
|
||||
/home/georg/.cache/node-gyp/16.4.0/include/node/uv/linux.h \
|
||||
/home/georg/.cache/node-gyp/16.4.0/include/node/v8.h \
|
||||
/home/georg/.cache/node-gyp/16.4.0/include/node/cppgc/common.h \
|
||||
/home/georg/.cache/node-gyp/16.4.0/include/node/v8config.h \
|
||||
/home/georg/.cache/node-gyp/16.4.0/include/node/v8-internal.h \
|
||||
/home/georg/.cache/node-gyp/16.4.0/include/node/v8-version.h \
|
||||
/home/georg/.cache/node-gyp/16.4.0/include/node/v8config.h \
|
||||
/media/veracrypt1/GitHub/kiwiirc/node_modules/node-addon-api/napi.h \
|
||||
/home/georg/.cache/node-gyp/16.4.0/include/node/node_api.h \
|
||||
/home/georg/.cache/node-gyp/16.4.0/include/node/js_native_api.h \
|
||||
/home/georg/.cache/node-gyp/16.4.0/include/node/js_native_api_types.h \
|
||||
/home/georg/.cache/node-gyp/16.4.0/include/node/node_api_types.h \
|
||||
/media/veracrypt1/GitHub/kiwiirc/node_modules/node-addon-api/napi-inl.h \
|
||||
/media/veracrypt1/GitHub/kiwiirc/node_modules/node-addon-api/napi-inl.deprecated.h \
|
||||
/home/georg/.cache/node-gyp/16.4.0/include/node/node.h \
|
||||
/home/georg/.cache/node-gyp/16.4.0/include/node/v8.h \
|
||||
/home/georg/.cache/node-gyp/16.4.0/include/node/v8-platform.h \
|
||||
/home/georg/.cache/node-gyp/16.4.0/include/node/node_version.h
|
||||
/home/georg/.cache/node-gyp/16.2.0/include/node/uv.h \
|
||||
/home/georg/.cache/node-gyp/16.2.0/include/node/uv/errno.h \
|
||||
/home/georg/.cache/node-gyp/16.2.0/include/node/uv/version.h \
|
||||
/home/georg/.cache/node-gyp/16.2.0/include/node/uv/unix.h \
|
||||
/home/georg/.cache/node-gyp/16.2.0/include/node/uv/threadpool.h \
|
||||
/home/georg/.cache/node-gyp/16.2.0/include/node/uv/linux.h \
|
||||
/home/georg/.cache/node-gyp/16.2.0/include/node/v8.h \
|
||||
/home/georg/.cache/node-gyp/16.2.0/include/node/cppgc/common.h \
|
||||
/home/georg/.cache/node-gyp/16.2.0/include/node/v8config.h \
|
||||
/home/georg/.cache/node-gyp/16.2.0/include/node/v8-internal.h \
|
||||
/home/georg/.cache/node-gyp/16.2.0/include/node/v8-version.h \
|
||||
/home/georg/.cache/node-gyp/16.2.0/include/node/v8config.h \
|
||||
/media/veracrypt1/GitHub/kiwiirc-custom/node_modules/node-addon-api/napi.h \
|
||||
/home/georg/.cache/node-gyp/16.2.0/include/node/node_api.h \
|
||||
/home/georg/.cache/node-gyp/16.2.0/include/node/js_native_api.h \
|
||||
/home/georg/.cache/node-gyp/16.2.0/include/node/js_native_api_types.h \
|
||||
/home/georg/.cache/node-gyp/16.2.0/include/node/node_api_types.h \
|
||||
/media/veracrypt1/GitHub/kiwiirc-custom/node_modules/node-addon-api/napi-inl.h \
|
||||
/media/veracrypt1/GitHub/kiwiirc-custom/node_modules/node-addon-api/napi-inl.deprecated.h \
|
||||
/home/georg/.cache/node-gyp/16.2.0/include/node/node.h \
|
||||
/home/georg/.cache/node-gyp/16.2.0/include/node/v8.h \
|
||||
/home/georg/.cache/node-gyp/16.2.0/include/node/v8-platform.h \
|
||||
/home/georg/.cache/node-gyp/16.2.0/include/node/node_version.h
|
||||
../src/deasync.cc:
|
||||
/home/georg/.cache/node-gyp/16.4.0/include/node/uv.h:
|
||||
/home/georg/.cache/node-gyp/16.4.0/include/node/uv/errno.h:
|
||||
/home/georg/.cache/node-gyp/16.4.0/include/node/uv/version.h:
|
||||
/home/georg/.cache/node-gyp/16.4.0/include/node/uv/unix.h:
|
||||
/home/georg/.cache/node-gyp/16.4.0/include/node/uv/threadpool.h:
|
||||
/home/georg/.cache/node-gyp/16.4.0/include/node/uv/linux.h:
|
||||
/home/georg/.cache/node-gyp/16.4.0/include/node/v8.h:
|
||||
/home/georg/.cache/node-gyp/16.4.0/include/node/cppgc/common.h:
|
||||
/home/georg/.cache/node-gyp/16.4.0/include/node/v8config.h:
|
||||
/home/georg/.cache/node-gyp/16.4.0/include/node/v8-internal.h:
|
||||
/home/georg/.cache/node-gyp/16.4.0/include/node/v8-version.h:
|
||||
/home/georg/.cache/node-gyp/16.4.0/include/node/v8config.h:
|
||||
/media/veracrypt1/GitHub/kiwiirc/node_modules/node-addon-api/napi.h:
|
||||
/home/georg/.cache/node-gyp/16.4.0/include/node/node_api.h:
|
||||
/home/georg/.cache/node-gyp/16.4.0/include/node/js_native_api.h:
|
||||
/home/georg/.cache/node-gyp/16.4.0/include/node/js_native_api_types.h:
|
||||
/home/georg/.cache/node-gyp/16.4.0/include/node/node_api_types.h:
|
||||
/media/veracrypt1/GitHub/kiwiirc/node_modules/node-addon-api/napi-inl.h:
|
||||
/media/veracrypt1/GitHub/kiwiirc/node_modules/node-addon-api/napi-inl.deprecated.h:
|
||||
/home/georg/.cache/node-gyp/16.4.0/include/node/node.h:
|
||||
/home/georg/.cache/node-gyp/16.4.0/include/node/v8.h:
|
||||
/home/georg/.cache/node-gyp/16.4.0/include/node/v8-platform.h:
|
||||
/home/georg/.cache/node-gyp/16.4.0/include/node/node_version.h:
|
||||
/home/georg/.cache/node-gyp/16.2.0/include/node/uv.h:
|
||||
/home/georg/.cache/node-gyp/16.2.0/include/node/uv/errno.h:
|
||||
/home/georg/.cache/node-gyp/16.2.0/include/node/uv/version.h:
|
||||
/home/georg/.cache/node-gyp/16.2.0/include/node/uv/unix.h:
|
||||
/home/georg/.cache/node-gyp/16.2.0/include/node/uv/threadpool.h:
|
||||
/home/georg/.cache/node-gyp/16.2.0/include/node/uv/linux.h:
|
||||
/home/georg/.cache/node-gyp/16.2.0/include/node/v8.h:
|
||||
/home/georg/.cache/node-gyp/16.2.0/include/node/cppgc/common.h:
|
||||
/home/georg/.cache/node-gyp/16.2.0/include/node/v8config.h:
|
||||
/home/georg/.cache/node-gyp/16.2.0/include/node/v8-internal.h:
|
||||
/home/georg/.cache/node-gyp/16.2.0/include/node/v8-version.h:
|
||||
/home/georg/.cache/node-gyp/16.2.0/include/node/v8config.h:
|
||||
/media/veracrypt1/GitHub/kiwiirc-custom/node_modules/node-addon-api/napi.h:
|
||||
/home/georg/.cache/node-gyp/16.2.0/include/node/node_api.h:
|
||||
/home/georg/.cache/node-gyp/16.2.0/include/node/js_native_api.h:
|
||||
/home/georg/.cache/node-gyp/16.2.0/include/node/js_native_api_types.h:
|
||||
/home/georg/.cache/node-gyp/16.2.0/include/node/node_api_types.h:
|
||||
/media/veracrypt1/GitHub/kiwiirc-custom/node_modules/node-addon-api/napi-inl.h:
|
||||
/media/veracrypt1/GitHub/kiwiirc-custom/node_modules/node-addon-api/napi-inl.deprecated.h:
|
||||
/home/georg/.cache/node-gyp/16.2.0/include/node/node.h:
|
||||
/home/georg/.cache/node-gyp/16.2.0/include/node/v8.h:
|
||||
/home/georg/.cache/node-gyp/16.2.0/include/node/v8-platform.h:
|
||||
/home/georg/.cache/node-gyp/16.2.0/include/node/node_version.h:
|
||||
|
151
node_modules/deasync/build/config.gypi
generated
vendored
151
node_modules/deasync/build/config.gypi
generated
vendored
@ -18,12 +18,8 @@
|
||||
"enable_pgo_use": "false",
|
||||
"error_on_warn": "false",
|
||||
"force_dynamic_crt": 0,
|
||||
"gas_version": "2.30",
|
||||
"host_arch": "x64",
|
||||
"icu_data_in": "../../deps/icu-tmp/icudt69l.dat",
|
||||
"icu_endianness": "l",
|
||||
"icu_gyp_path": "tools/icu/icu-generic.gyp",
|
||||
"icu_path": "deps/icu-small",
|
||||
"icu_gyp_path": "tools/icu/icu-system.gyp",
|
||||
"icu_small": "false",
|
||||
"icu_ver_major": "69",
|
||||
"is_debug": 0,
|
||||
@ -35,19 +31,18 @@
|
||||
"node_install_npm": "true",
|
||||
"node_module_version": 93,
|
||||
"node_no_browser_globals": "false",
|
||||
"node_prefix": "/",
|
||||
"node_release_urlbase": "https://nodejs.org/download/release/",
|
||||
"node_section_ordering_info": "",
|
||||
"node_prefix": "/usr",
|
||||
"node_release_urlbase": "",
|
||||
"node_shared": "false",
|
||||
"node_shared_brotli": "false",
|
||||
"node_shared_cares": "false",
|
||||
"node_shared_cares": "true",
|
||||
"node_shared_http_parser": "false",
|
||||
"node_shared_libuv": "false",
|
||||
"node_shared_nghttp2": "false",
|
||||
"node_shared_nghttp2": "true",
|
||||
"node_shared_nghttp3": "false",
|
||||
"node_shared_ngtcp2": "false",
|
||||
"node_shared_openssl": "false",
|
||||
"node_shared_zlib": "false",
|
||||
"node_shared_openssl": "true",
|
||||
"node_shared_zlib": "true",
|
||||
"node_tag": "",
|
||||
"node_target_type": "executable",
|
||||
"node_use_bundled_v8": "true",
|
||||
@ -61,18 +56,17 @@
|
||||
"node_without_node_options": "false",
|
||||
"openssl_fips": "",
|
||||
"openssl_is_fips": "false",
|
||||
"openssl_quic": "true",
|
||||
"openssl_quic": "false",
|
||||
"ossfuzz": "false",
|
||||
"shlib_suffix": "so.93",
|
||||
"target_arch": "x64",
|
||||
"v8_enable_31bit_smis_on_64bit_arch": 0,
|
||||
"v8_enable_gdbjit": 0,
|
||||
"v8_enable_gdbjit": 1,
|
||||
"v8_enable_i18n_support": 1,
|
||||
"v8_enable_inspector": 1,
|
||||
"v8_enable_lite_mode": 0,
|
||||
"v8_enable_object_print": 1,
|
||||
"v8_enable_pointer_compression": 0,
|
||||
"v8_enable_webassembly": 1,
|
||||
"v8_no_strict_aliasing": 1,
|
||||
"v8_optimized_debug": 1,
|
||||
"v8_promise_internal_field_count": 1,
|
||||
@ -80,21 +74,128 @@
|
||||
"v8_trace_maps": 0,
|
||||
"v8_use_siphash": 1,
|
||||
"want_separate_host_toolset": 0,
|
||||
"nodedir": "/home/georg/.cache/node-gyp/16.4.0",
|
||||
"nodedir": "/home/georg/.cache/node-gyp/16.2.0",
|
||||
"standalone_static_library": 1,
|
||||
"access": "",
|
||||
"timing": "",
|
||||
"save_dev": "",
|
||||
"sign_git_tag": "",
|
||||
"before": "",
|
||||
"userconfig": "/home/georg/.npmrc",
|
||||
"global": "",
|
||||
"unsafe_perm": "true",
|
||||
"fetch_retry_mintimeout": "10000",
|
||||
"cache": "/home/georg/.npm",
|
||||
"init_author_name": "",
|
||||
"send_metrics": "",
|
||||
"optional": "true",
|
||||
"user": "",
|
||||
"git_tag_version": "true",
|
||||
"rebuild_bundle": "true",
|
||||
"always_auth": "",
|
||||
"cache_max": "Infinity",
|
||||
"searchstaleness": "900",
|
||||
"ignore_scripts": "",
|
||||
"save_optional": "",
|
||||
"dev": "",
|
||||
"browser": "",
|
||||
"maxsockets": "50",
|
||||
"ham_it_up": "",
|
||||
"bin_links": "true",
|
||||
"allow_same_version": "",
|
||||
"globalconfig": "/usr/etc/npmrc",
|
||||
"cache_min": "10",
|
||||
"tag_version_prefix": "v",
|
||||
"shell": "/usr/bin/fish",
|
||||
"preid": "",
|
||||
"usage": "",
|
||||
"only": "",
|
||||
"save_prefix": "^",
|
||||
"version_git_tag": "true",
|
||||
"init_license": "MIT",
|
||||
"version_commit_hooks": "true",
|
||||
"version_tag_prefix": "v",
|
||||
"version_git_sign": "",
|
||||
"version_git_message": "v%s",
|
||||
"user_agent": "yarn/1.22.10 npm/? node/v16.4.0 linux x64",
|
||||
"sign_git_commit": "",
|
||||
"commit_hooks": "true",
|
||||
"init_module": "/home/georg/.npm-init.js",
|
||||
"editor": "vi",
|
||||
"otp": "",
|
||||
"tmp": "/tmp",
|
||||
"audit_level": "low",
|
||||
"color": "true",
|
||||
"package_lock_only": "",
|
||||
"save_prod": "",
|
||||
"format_package_lock": "true",
|
||||
"also": "",
|
||||
"cidr": "",
|
||||
"node_version": "16.2.0",
|
||||
"init_author_url": "",
|
||||
"globalignorefile": "/usr/etc/npmignore",
|
||||
"init_license": "ISC",
|
||||
"cache_lock_stale": "60000",
|
||||
"versions": "",
|
||||
"fetch_retry_maxtimeout": "60000",
|
||||
"fetch_retries": "2",
|
||||
"git": "git",
|
||||
"group": "100",
|
||||
"read_only": "",
|
||||
"unicode": "true",
|
||||
"sso_type": "oauth",
|
||||
"cache_lock_retries": "10",
|
||||
"local_address": "",
|
||||
"description": "true",
|
||||
"dry_run": "",
|
||||
"viewer": "man",
|
||||
"message": "%s",
|
||||
"offline": "",
|
||||
"production": "",
|
||||
"prefer_online": "",
|
||||
"link": "",
|
||||
"shrinkwrap": "true",
|
||||
"force": "",
|
||||
"rollback": "true",
|
||||
"save_bundle": "",
|
||||
"onload_script": "",
|
||||
"prefix": "/usr",
|
||||
"cert": "",
|
||||
"heading": "npm",
|
||||
"cache_lock_wait": "10000",
|
||||
"node_options": "",
|
||||
"key": "",
|
||||
"json": "",
|
||||
"depth": "Infinity",
|
||||
"ca": "",
|
||||
"prefer_offline": "",
|
||||
"fund": "true",
|
||||
"if_present": "",
|
||||
"user_agent": "npm/6.14.9 node/v16.2.0 linux x64",
|
||||
"save_exact": "",
|
||||
"progress": "true",
|
||||
"global_style": "",
|
||||
"init_author_email": "",
|
||||
"long": "",
|
||||
"script_shell": "",
|
||||
"save": "true",
|
||||
"strict_ssl": "true",
|
||||
"registry": "https://registry.yarnpkg.com",
|
||||
"ignore_optional": "",
|
||||
"auth_type": "legacy",
|
||||
"version": "",
|
||||
"logs_max": "10",
|
||||
"umask": "0022",
|
||||
"sso_poll_frequency": "500",
|
||||
"searchopts": "",
|
||||
"legacy_bundling": "",
|
||||
"searchlimit": "20",
|
||||
"metrics_registry": "https://registry.npmjs.org/",
|
||||
"node_gyp": "/usr/local/lib/node_modules/npm/node_modules/node-gyp/bin/node-gyp.js",
|
||||
"searchexclude": "",
|
||||
"update_notifier": "true",
|
||||
"registry": "https://registry.npmjs.org/",
|
||||
"ignore_prepublish": "",
|
||||
"audit": "true",
|
||||
"tag": "latest",
|
||||
"scripts_prepend_node_path": "warn-only",
|
||||
"fetch_retry_factor": "10",
|
||||
"engine_strict": "",
|
||||
"https_proxy": "",
|
||||
"scope": "",
|
||||
"package_lock": "true",
|
||||
"parseable": "",
|
||||
"init_version": "1.0.0"
|
||||
}
|
||||
}
|
||||
|
36
node_modules/deasync/build/deasync.target.mk
generated
vendored
36
node_modules/deasync/build/deasync.target.mk
generated
vendored
@ -13,8 +13,6 @@ DEFS_Debug := \
|
||||
'-D_LARGEFILE_SOURCE' \
|
||||
'-D_FILE_OFFSET_BITS=64' \
|
||||
'-D__STDC_FORMAT_MACROS' \
|
||||
'-DOPENSSL_NO_PINSHARED' \
|
||||
'-DOPENSSL_THREADS' \
|
||||
'-DBUILDING_NODE_EXTENSION' \
|
||||
'-DDEBUG' \
|
||||
'-D_DEBUG' \
|
||||
@ -40,14 +38,14 @@ CFLAGS_CC_Debug := \
|
||||
-std=gnu++14
|
||||
|
||||
INCS_Debug := \
|
||||
-I/home/georg/.cache/node-gyp/16.4.0/include/node \
|
||||
-I/home/georg/.cache/node-gyp/16.4.0/src \
|
||||
-I/home/georg/.cache/node-gyp/16.4.0/deps/openssl/config \
|
||||
-I/home/georg/.cache/node-gyp/16.4.0/deps/openssl/openssl/include \
|
||||
-I/home/georg/.cache/node-gyp/16.4.0/deps/uv/include \
|
||||
-I/home/georg/.cache/node-gyp/16.4.0/deps/zlib \
|
||||
-I/home/georg/.cache/node-gyp/16.4.0/deps/v8/include \
|
||||
-I/media/veracrypt1/GitHub/kiwiirc/node_modules/node-addon-api
|
||||
-I/home/georg/.cache/node-gyp/16.2.0/include/node \
|
||||
-I/home/georg/.cache/node-gyp/16.2.0/src \
|
||||
-I/home/georg/.cache/node-gyp/16.2.0/deps/openssl/config \
|
||||
-I/home/georg/.cache/node-gyp/16.2.0/deps/openssl/openssl/include \
|
||||
-I/home/georg/.cache/node-gyp/16.2.0/deps/uv/include \
|
||||
-I/home/georg/.cache/node-gyp/16.2.0/deps/zlib \
|
||||
-I/home/georg/.cache/node-gyp/16.2.0/deps/v8/include \
|
||||
-I/media/veracrypt1/GitHub/kiwiirc-custom/node_modules/node-addon-api
|
||||
|
||||
DEFS_Release := \
|
||||
'-DNODE_GYP_MODULE_NAME=deasync' \
|
||||
@ -60,8 +58,6 @@ DEFS_Release := \
|
||||
'-D_LARGEFILE_SOURCE' \
|
||||
'-D_FILE_OFFSET_BITS=64' \
|
||||
'-D__STDC_FORMAT_MACROS' \
|
||||
'-DOPENSSL_NO_PINSHARED' \
|
||||
'-DOPENSSL_THREADS' \
|
||||
'-DBUILDING_NODE_EXTENSION'
|
||||
|
||||
# Flags passed to all source files.
|
||||
@ -84,14 +80,14 @@ CFLAGS_CC_Release := \
|
||||
-std=gnu++14
|
||||
|
||||
INCS_Release := \
|
||||
-I/home/georg/.cache/node-gyp/16.4.0/include/node \
|
||||
-I/home/georg/.cache/node-gyp/16.4.0/src \
|
||||
-I/home/georg/.cache/node-gyp/16.4.0/deps/openssl/config \
|
||||
-I/home/georg/.cache/node-gyp/16.4.0/deps/openssl/openssl/include \
|
||||
-I/home/georg/.cache/node-gyp/16.4.0/deps/uv/include \
|
||||
-I/home/georg/.cache/node-gyp/16.4.0/deps/zlib \
|
||||
-I/home/georg/.cache/node-gyp/16.4.0/deps/v8/include \
|
||||
-I/media/veracrypt1/GitHub/kiwiirc/node_modules/node-addon-api
|
||||
-I/home/georg/.cache/node-gyp/16.2.0/include/node \
|
||||
-I/home/georg/.cache/node-gyp/16.2.0/src \
|
||||
-I/home/georg/.cache/node-gyp/16.2.0/deps/openssl/config \
|
||||
-I/home/georg/.cache/node-gyp/16.2.0/deps/openssl/openssl/include \
|
||||
-I/home/georg/.cache/node-gyp/16.2.0/deps/uv/include \
|
||||
-I/home/georg/.cache/node-gyp/16.2.0/deps/zlib \
|
||||
-I/home/georg/.cache/node-gyp/16.2.0/deps/v8/include \
|
||||
-I/media/veracrypt1/GitHub/kiwiirc-custom/node_modules/node-addon-api
|
||||
|
||||
OBJS := \
|
||||
$(obj).target/$(TARGET)/src/deasync.o
|
||||
|
22
package-lock.json
generated
22
package-lock.json
generated
@ -5,6 +5,7 @@
|
||||
"requires": true,
|
||||
"packages": {
|
||||
"": {
|
||||
"name": "kiwiirc",
|
||||
"version": "1.5.1",
|
||||
"dependencies": {
|
||||
"@babel/runtime-corejs3": "^7.9.2",
|
||||
@ -30,7 +31,8 @@
|
||||
"vue": "^2.6.11",
|
||||
"vue-virtual-scroller": "^1.0.4",
|
||||
"whatwg-fetch": "^3.0.0",
|
||||
"xhr": "^2.5.0"
|
||||
"xhr": "^2.5.0",
|
||||
"yarn": "^1.22.10"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@vue/cli-plugin-babel": "~4.3.1",
|
||||
@ -23937,6 +23939,19 @@
|
||||
"decamelize": "^1.2.0"
|
||||
}
|
||||
},
|
||||
"node_modules/yarn": {
|
||||
"version": "1.22.10",
|
||||
"resolved": "https://registry.npmjs.org/yarn/-/yarn-1.22.10.tgz",
|
||||
"integrity": "sha512-IanQGI9RRPAN87VGTF7zs2uxkSyQSrSPsju0COgbsKQOOXr5LtcVPeyXWgwVa0ywG3d8dg6kSYKGBuYK021qeA==",
|
||||
"hasInstallScript": true,
|
||||
"bin": {
|
||||
"yarn": "bin/yarn.js",
|
||||
"yarnpkg": "bin/yarn.js"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=4.0.0"
|
||||
}
|
||||
},
|
||||
"node_modules/yorkie": {
|
||||
"version": "2.0.0",
|
||||
"resolved": "https://registry.npmjs.org/yorkie/-/yorkie-2.0.0.tgz",
|
||||
@ -42963,6 +42978,11 @@
|
||||
"decamelize": "^1.2.0"
|
||||
}
|
||||
},
|
||||
"yarn": {
|
||||
"version": "1.22.10",
|
||||
"resolved": "https://registry.npmjs.org/yarn/-/yarn-1.22.10.tgz",
|
||||
"integrity": "sha512-IanQGI9RRPAN87VGTF7zs2uxkSyQSrSPsju0COgbsKQOOXr5LtcVPeyXWgwVa0ywG3d8dg6kSYKGBuYK021qeA=="
|
||||
},
|
||||
"yorkie": {
|
||||
"version": "2.0.0",
|
||||
"resolved": "https://registry.npmjs.org/yorkie/-/yorkie-2.0.0.tgz",
|
||||
|
@ -38,7 +38,8 @@
|
||||
"vue": "^2.6.11",
|
||||
"vue-virtual-scroller": "^1.0.4",
|
||||
"whatwg-fetch": "^3.0.0",
|
||||
"xhr": "^2.5.0"
|
||||
"xhr": "^2.5.0",
|
||||
"yarn": "^1.22.10"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@vue/cli-plugin-babel": "~4.3.1",
|
||||
|
@ -12485,6 +12485,11 @@ yargs@^15.0.0:
|
||||
y18n "^4.0.0"
|
||||
yargs-parser "^18.1.2"
|
||||
|
||||
yarn@^1.22.10:
|
||||
version "1.22.10"
|
||||
resolved "https://registry.npmjs.org/yarn/-/yarn-1.22.10.tgz"
|
||||
integrity sha512-IanQGI9RRPAN87VGTF7zs2uxkSyQSrSPsju0COgbsKQOOXr5LtcVPeyXWgwVa0ywG3d8dg6kSYKGBuYK021qeA==
|
||||
|
||||
yorkie@^2.0.0:
|
||||
version "2.0.0"
|
||||
resolved "https://registry.npmjs.org/yorkie/-/yorkie-2.0.0.tgz"
|
||||
|
Loading…
Reference in New Issue
Block a user