kt-forpro-tools 1.0.0 → 1.0.1
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/package.json +28 -28
- package/src/KT_ForproTools.ts +1 -1
- package/src/index.ts +2 -1
package/package.json
CHANGED
|
@@ -1,30 +1,30 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
2
|
+
"name": "kt-forpro-tools",
|
|
3
|
+
"version": "1.0.1",
|
|
4
|
+
"description": "",
|
|
5
|
+
"author": "Miguel de Mendoza",
|
|
6
|
+
"main": "src/index.ts",
|
|
7
|
+
"license": "MIT",
|
|
8
|
+
"scripts": {
|
|
9
|
+
"build": "kt-build",
|
|
10
|
+
"build-tests": "kt-build build-tests",
|
|
11
|
+
"debug-build-tests": "kt-build debug-build-tests"
|
|
12
|
+
},
|
|
13
|
+
"files": [
|
|
14
|
+
"src",
|
|
15
|
+
"tsconfig.json"
|
|
16
|
+
],
|
|
17
|
+
"dependencies": {
|
|
18
|
+
"kt-ae-is-checkers": "^1.0.7",
|
|
19
|
+
"kt-ae-tools-layers": "^1.0.0",
|
|
20
|
+
"kt-ae-tools-project": "^1.0.5",
|
|
21
|
+
"kt-core": "*",
|
|
22
|
+
"kt-io": "^1.1.0"
|
|
23
|
+
},
|
|
24
|
+
"devDependencies": {
|
|
25
|
+
"kt-extendscript-builder": "*",
|
|
26
|
+
"kt-testing-suite-ae": "*",
|
|
27
|
+
"kt-testing-suite-core": "^1.7.7",
|
|
28
|
+
"prettier": "^3.6.2"
|
|
29
|
+
}
|
|
30
30
|
}
|
package/src/KT_ForproTools.ts
CHANGED
package/src/index.ts
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { KT_Core } from "kt-core";
|
|
2
2
|
import { KT_ForproTools } from "./KT_ForproTools";
|
|
3
3
|
import { KT_Slides } from "./slides";
|
|
4
|
+
import { type KT_SlidesOptions } from "./slides";
|
|
4
5
|
|
|
5
|
-
export { KT_ForproTools, KT_Slides };
|
|
6
|
+
export { KT_ForproTools, KT_Slides, type KT_SlidesOptions };
|