qcobjects-cli 2.5.126-beta → 2.5.127-beta
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/VERSION +1 -1
- package/deno.json +20 -0
- package/mod.ts +3 -0
- package/package.json +9 -4
- package/tsconfig.json +5 -2
package/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
2.5.
|
|
1
|
+
2.5.127-beta
|
package/deno.json
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
{
|
|
2
|
+
"compilerOptions": {
|
|
3
|
+
"allowJs": true,
|
|
4
|
+
"strict": true,
|
|
5
|
+
"lib": ["deno.window", "deno.ns", "dom"]
|
|
6
|
+
},
|
|
7
|
+
"importMap": {
|
|
8
|
+
"imports": {
|
|
9
|
+
"qcobjects": "npm:qcobjects@^2.5.141-beta",
|
|
10
|
+
"qcobjects/": "npm:qcobjects@^2.5.141-beta/",
|
|
11
|
+
"mime": "npm:mime@^2.6.0",
|
|
12
|
+
"commander": "npm:commander@^10.0.1",
|
|
13
|
+
"yaml": "npm:yaml@^2.6.0"
|
|
14
|
+
}
|
|
15
|
+
},
|
|
16
|
+
"tasks": {
|
|
17
|
+
"dev": "deno run --allow-read --allow-write --allow-net --allow-env --watch main.ts",
|
|
18
|
+
"test": "deno test --allow-read --allow-write --allow-net --allow-env"
|
|
19
|
+
}
|
|
20
|
+
}
|
package/mod.ts
ADDED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "qcobjects-cli",
|
|
3
|
-
"version": "2.5.
|
|
3
|
+
"version": "2.5.127-beta",
|
|
4
4
|
"description": "qcobjects cli command line tool",
|
|
5
5
|
"main": "public/cjs/index.cjs",
|
|
6
6
|
"module": "public/esm/index.mjs",
|
|
@@ -10,8 +10,10 @@
|
|
|
10
10
|
"exports": {
|
|
11
11
|
".": {
|
|
12
12
|
"types": "./public/types/index.d.ts",
|
|
13
|
+
"deno": "./mod.ts",
|
|
13
14
|
"require": "./public/cjs/index.cjs",
|
|
14
|
-
"import": "./public/esm/index.mjs"
|
|
15
|
+
"import": "./public/esm/index.mjs",
|
|
16
|
+
"default": "./public/esm/index.mjs"
|
|
15
17
|
},
|
|
16
18
|
"./types/*": "./types/*",
|
|
17
19
|
"./package.json": "./package.json",
|
|
@@ -22,8 +24,11 @@
|
|
|
22
24
|
"./*.cjs": "./public/cjs/*.cjs",
|
|
23
25
|
"./*.mjs": "./public/esm/*.mjs",
|
|
24
26
|
"./*": {
|
|
27
|
+
"types": "./public/types/*.d.ts",
|
|
28
|
+
"deno": "./mod.ts",
|
|
25
29
|
"require": "./public/cjs/*.cjs",
|
|
26
|
-
"import": "./public/esm/*.mjs"
|
|
30
|
+
"import": "./public/esm/*.mjs",
|
|
31
|
+
"default": "./public/esm/*.mjs"
|
|
27
32
|
},
|
|
28
33
|
"./qcobjects-collab": {
|
|
29
34
|
"require": "./public/cjs/qcobjects-collab.cjs",
|
|
@@ -160,7 +165,7 @@
|
|
|
160
165
|
"install": "^0.13.0",
|
|
161
166
|
"jasmine": "^3.7.0",
|
|
162
167
|
"qcobjects": "^2.5.141-beta",
|
|
163
|
-
"qcobjects-sdk": "
|
|
168
|
+
"qcobjects-sdk": "^2.5.105-beta",
|
|
164
169
|
"ts-node": "^10.9.2",
|
|
165
170
|
"typescript": "^5.7.2",
|
|
166
171
|
"typescript-eslint": "^8.18.1"
|
package/tsconfig.json
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
"traceResolution":false,
|
|
5
5
|
"forceConsistentCasingInFileNames": true,
|
|
6
6
|
"moduleResolution": "nodenext",
|
|
7
|
-
"moduleDetection": "
|
|
7
|
+
"moduleDetection": "force",
|
|
8
8
|
"strict": true,
|
|
9
9
|
"noImplicitAny": true,
|
|
10
10
|
"strictNullChecks": true,
|
|
@@ -24,6 +24,9 @@
|
|
|
24
24
|
"allowSyntheticDefaultImports": true,
|
|
25
25
|
"esModuleInterop": true,
|
|
26
26
|
"baseUrl": ".",
|
|
27
|
+
"declaration": true,
|
|
28
|
+
"declarationMap": true,
|
|
29
|
+
"sourceMap": true,
|
|
27
30
|
"typeRoots": [
|
|
28
31
|
"./node_modules/@types"
|
|
29
32
|
],
|
|
@@ -38,7 +41,7 @@
|
|
|
38
41
|
"src/types/**/*"
|
|
39
42
|
],
|
|
40
43
|
"exclude": [
|
|
41
|
-
"
|
|
44
|
+
"src/templates/**/*",
|
|
42
45
|
"src/index.mts",
|
|
43
46
|
"src/index.cts",
|
|
44
47
|
"node_modules",
|