qcobjects 2.4.103-ts → 2.4.105-ts
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/.eslintignore +2 -0
- package/VERSION +1 -1
- package/browser/QCObjects.js +2 -0
- package/browser/QCObjects.js.map +7 -0
- package/browser/chunks/chunk-O2PFFZVJ.js +713 -0
- package/browser/chunks/chunk-O2PFFZVJ.js.map +7 -0
- package/browser/chunks/chunk-TBLBK5VV.js +713 -0
- package/browser/chunks/chunk-TBLBK5VV.js.map +7 -0
- package/browser/chunks/chunk-ZYLXOA35.js +713 -0
- package/browser/chunks/chunk-ZYLXOA35.js.map +7 -0
- package/browser/index.js +2 -0
- package/browser/index.js.map +7 -0
- package/build/QCObjects.js +4868 -0
- package/build/index.cjs +4 -0
- package/build/index.js +7 -0
- package/build/index.mjs +2 -0
- package/package.json +18 -16
- package/src/QCObjects.js +4531 -4547
- package/src/index.d.ts +8 -11
- package/tsconfig.d.json +2 -2
- package/tsconfig.json +7 -2
- package/types/index.d.ts +472 -0
- package/src/types.d.ts +0 -20
package/build/index.cjs
ADDED
package/build/index.js
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
|
+
};
|
|
5
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
+
const QCObjects_1 = __importDefault(require("./QCObjects"));
|
|
7
|
+
exports.default = QCObjects_1.default;
|
package/build/index.mjs
ADDED
package/package.json
CHANGED
|
@@ -1,34 +1,37 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "qcobjects",
|
|
3
|
-
"version": "2.4.
|
|
3
|
+
"version": "2.4.105-ts",
|
|
4
4
|
"description": "QCObjects is an Open-source framework that empowers full-stack developers to make micro-services and micro-frontends into an N-Tier architecture.",
|
|
5
5
|
"main": "build/index.cjs",
|
|
6
6
|
"module": "build/index.mjs",
|
|
7
|
+
"browser": "browser/index.js",
|
|
7
8
|
"type": "commonjs",
|
|
8
|
-
"types": "
|
|
9
|
+
"types": "build/index.d.ts",
|
|
9
10
|
"exports": {
|
|
10
11
|
".": {
|
|
11
12
|
"require": "./build/index.cjs",
|
|
12
13
|
"import": "./build/index.mjs",
|
|
13
|
-
"types": "./
|
|
14
|
+
"types": "./build/index.d.ts"
|
|
14
15
|
},
|
|
15
16
|
"./package.json": "./package.json"
|
|
16
17
|
},
|
|
17
18
|
"license": "LGPL-3.0",
|
|
18
19
|
"scripts": {
|
|
19
|
-
"
|
|
20
|
-
"
|
|
20
|
+
"build": "npm run build:ts-types && npm run build:ts && npm run build:browser",
|
|
21
|
+
"build:ts": "npm test && npx tsc",
|
|
22
|
+
"build:ts-types": "npx tsc --project tsconfig.d.json",
|
|
23
|
+
"build:browser": "npx -y esbuild@0.17.19 build/*.js --bundle --outdir=browser --keep-names --minify --global-name=global --sourcemap --splitting --chunk-names=chunks/[name]-[hash] --format=esm --target=es2021",
|
|
24
|
+
"start": "qcobjects-shell",
|
|
25
|
+
"test": "(npm run lint && (npx jasmine))",
|
|
26
|
+
"lint": "(npx -y eslint@8.40.0 src/**/*.ts --fix --ext ts)",
|
|
27
|
+
"preversion": "npm cache verify && npm test",
|
|
21
28
|
"sync": "git add . && git commit -am ",
|
|
22
|
-
"preversion": "npm i --upgrade && npm test",
|
|
23
29
|
"postversion": "git push && git push --tags",
|
|
24
30
|
"v-patch": "qcobjects v-patch",
|
|
25
31
|
"v-minor": "qcobjects v-minor",
|
|
26
32
|
"v-major": "qcobjects v-major",
|
|
27
33
|
"qcobjects": "qcobjects",
|
|
28
34
|
"cli": "qcobjects",
|
|
29
|
-
"build:ts": "npm test && npx tsc",
|
|
30
|
-
"build:ts-types": "npx tsc --project tsconfig.d.json",
|
|
31
|
-
"build": "npm run build:ts-types && npm run build:ts && npm run generate-readme-pdf",
|
|
32
35
|
"prepare": "node -e \"if(!require('fs').existsSync('.git')){process.exit(0)}\" || npx -y husky install",
|
|
33
36
|
"cli:help": "qcobjects --help",
|
|
34
37
|
"tree": "tree -d --gitignore",
|
|
@@ -102,18 +105,17 @@
|
|
|
102
105
|
"@typescript-eslint/eslint-plugin": "^5.58.0",
|
|
103
106
|
"@typescript-eslint/parser": "^5.58.0",
|
|
104
107
|
"eslint": "^8.40.0",
|
|
105
|
-
"eslint-config-prettier": "^8.
|
|
106
|
-
"eslint-config-qcobjects": "^0.0.23",
|
|
108
|
+
"eslint-config-prettier": "^8.10.0",
|
|
107
109
|
"eslint-config-semistandard": "^17.0.0",
|
|
108
|
-
"eslint-config-standard": "^17.
|
|
110
|
+
"eslint-config-standard": "^17.1.0",
|
|
109
111
|
"eslint-plugin-import": "^2.27.5",
|
|
110
112
|
"eslint-plugin-n": "^15.7.0",
|
|
111
113
|
"eslint-plugin-promise": "^6.1.1",
|
|
112
114
|
"hint": "^2.0.0",
|
|
113
115
|
"jasmine": "^3.7.0",
|
|
116
|
+
"typescript": "^5.6.3",
|
|
114
117
|
"qcobjects-sdk": "^2.4.66",
|
|
115
|
-
"qcobjects-tsconfig": "^2.4.10"
|
|
116
|
-
"typescript": "^5.6.2"
|
|
118
|
+
"qcobjects-tsconfig": "^2.4.10"
|
|
117
119
|
},
|
|
118
120
|
"peerDependencies": {
|
|
119
121
|
"@types/qcobjects": "github:QCObjects/-types-qcobjects",
|
|
@@ -122,7 +124,7 @@
|
|
|
122
124
|
},
|
|
123
125
|
"dependencies": {},
|
|
124
126
|
"engines": {
|
|
125
|
-
"npm": ">=
|
|
126
|
-
"node": ">=
|
|
127
|
+
"npm": ">=10",
|
|
128
|
+
"node": ">=20"
|
|
127
129
|
}
|
|
128
130
|
}
|