@folienbaukasten/extension-toolkit 1.0.0
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 +109 -0
- package/abi/README.md +20 -0
- package/abi/abi.json +151 -0
- package/abi/pack.d.ts +196 -0
- package/abi/pack.js +126 -0
- package/abi/provenance.json +5 -0
- package/abi/shims/jsx-runtime.js +13 -0
- package/abi/shims/platform.js +48 -0
- package/abi/shims/react.js +18 -0
- package/abi/types/charts/geometry.d.ts +43 -0
- package/abi/types/charts/option.d.ts +15 -0
- package/abi/types/charts/scale.d.ts +14 -0
- package/abi/types/charts/theme.d.ts +16 -0
- package/abi/types/charts/waterfall.d.ts +35 -0
- package/abi/types/components/Block.d.ts +31 -0
- package/abi/types/components/BlockArrow.d.ts +16 -0
- package/abi/types/components/Card.d.ts +25 -0
- package/abi/types/components/ChartView.d.ts +4 -0
- package/abi/types/components/DriverTree.d.ts +9 -0
- package/abi/types/components/FindingsBanner.d.ts +21 -0
- package/abi/types/components/HarveyBall.d.ts +12 -0
- package/abi/types/components/HeaderTitle.d.ts +19 -0
- package/abi/types/components/InsightRail.d.ts +13 -0
- package/abi/types/components/KpiTile.d.ts +5 -0
- package/abi/types/components/Matrix.d.ts +5 -0
- package/abi/types/components/QuoteColumn.d.ts +5 -0
- package/abi/types/components/SourceLine.d.ts +6 -0
- package/abi/types/components/Table.d.ts +5 -0
- package/abi/types/components/Timeline.d.ts +5 -0
- package/abi/types/components/slide/ContentSlide.d.ts +29 -0
- package/abi/types/components/slide/MissingComponent.d.ts +26 -0
- package/abi/types/components/slide/SlideFrame.d.ts +20 -0
- package/abi/types/components/slide/SlotView.d.ts +30 -0
- package/abi/types/components/slide/registry.d.ts +27 -0
- package/abi/types/components/slide/views/AgendaSlideView.d.ts +8 -0
- package/abi/types/components/slide/views/CardsSlideView.d.ts +12 -0
- package/abi/types/components/slide/views/ChaptersSlideView.d.ts +11 -0
- package/abi/types/components/slide/views/ChartSlideView.d.ts +3 -0
- package/abi/types/components/slide/views/ComponentSlideView.d.ts +19 -0
- package/abi/types/components/slide/views/DriverTreeSlideView.d.ts +3 -0
- package/abi/types/components/slide/views/FreeformSlideView.d.ts +3 -0
- package/abi/types/components/slide/views/KpiSlideView.d.ts +3 -0
- package/abi/types/components/slide/views/MatrixSlideView.d.ts +3 -0
- package/abi/types/components/slide/views/QuoteSlideView.d.ts +3 -0
- package/abi/types/components/slide/views/QuotesSlideView.d.ts +5 -0
- package/abi/types/components/slide/views/SplitSlideView.d.ts +3 -0
- package/abi/types/components/slide/views/TableSlideView.d.ts +3 -0
- package/abi/types/components/slide/views/TimelineSlideView.d.ts +3 -0
- package/abi/types/components/slide/views/TitleSlideView.d.ts +7 -0
- package/abi/types/components/slide/views/TwoBlockSlideView.d.ts +3 -0
- package/abi/types/components/slide/views/WebSlideView.d.ts +23 -0
- package/abi/types/components/slide/views/WhileArrowSlideView.d.ts +14 -0
- package/abi/types/deck/data.d.ts +127 -0
- package/abi/types/deck/host.d.ts +9 -0
- package/abi/types/deck/layouts.d.ts +685 -0
- package/abi/types/deck/schema.d.ts +437 -0
- package/abi/types/deck/web-body.d.ts +47 -0
- package/abi/types/lib/format.d.ts +12 -0
- package/abi/types/sets/platform.d.ts +45 -0
- package/abi/types/sets/types.d.ts +128 -0
- package/dist/fbk-pack.js +756 -0
- package/package.json +49 -0
- package/tsconfig.extension.json +17 -0
package/package.json
ADDED
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@folienbaukasten/extension-toolkit",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"type": "module",
|
|
5
|
+
"description": "Build, check and publish a Folienbaukasten extension — without a checkout of the app.",
|
|
6
|
+
"keywords": [
|
|
7
|
+
"folienbaukasten",
|
|
8
|
+
"folienbaukasten-toolkit",
|
|
9
|
+
"slides",
|
|
10
|
+
"presentation",
|
|
11
|
+
"extension"
|
|
12
|
+
],
|
|
13
|
+
"license": "MIT",
|
|
14
|
+
"homepage": "https://github.com/harlecin/fbk-extensions#readme",
|
|
15
|
+
"repository": {
|
|
16
|
+
"type": "git",
|
|
17
|
+
"url": "git+https://github.com/harlecin/fbk-extensions.git",
|
|
18
|
+
"directory": "toolkit"
|
|
19
|
+
},
|
|
20
|
+
"bugs": "https://github.com/harlecin/fbk-extensions/issues",
|
|
21
|
+
"bin": {
|
|
22
|
+
"fbk-pack": "dist/fbk-pack.js"
|
|
23
|
+
},
|
|
24
|
+
"files": [
|
|
25
|
+
"dist",
|
|
26
|
+
"abi",
|
|
27
|
+
"tsconfig.extension.json",
|
|
28
|
+
"README.md"
|
|
29
|
+
],
|
|
30
|
+
"engines": {
|
|
31
|
+
"node": ">=20"
|
|
32
|
+
},
|
|
33
|
+
"publishConfig": {
|
|
34
|
+
"access": "public"
|
|
35
|
+
},
|
|
36
|
+
"scripts": {
|
|
37
|
+
"build": "node build.ts",
|
|
38
|
+
"prepublishOnly": "node build.ts",
|
|
39
|
+
"smoke": "node smoke.ts"
|
|
40
|
+
},
|
|
41
|
+
"dependencies": {
|
|
42
|
+
"ajv": "^8.17.1",
|
|
43
|
+
"esbuild": "^0.28.2",
|
|
44
|
+
"jszip": "^3.10.1",
|
|
45
|
+
"ts-json-schema-generator": "^2.4.0",
|
|
46
|
+
"typescript": "^5.9.0"
|
|
47
|
+
},
|
|
48
|
+
"$comment": "The MAJOR version is the platform ABI this toolkit builds for — 1.x produces packs an ABI-1 app installs, 2.x an ABI-2 app. An author picks a major and has thereby picked which apps their extension installs into, which is a decision they can act on in a way that the word 'ABI' is not. The dependency versions are pinned to the ones the app's own packer used, so moving an extension onto this toolkit reproduces its previous pack byte for byte; esbuild is the one that matters, because a different minifier is a different set.js."
|
|
49
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$comment": "Extended by every extension's tsconfig.json. The platform mapping points at the ABI bundle's declarations, so an extension typechecks against the published surface rather than against a path into the app's source tree.",
|
|
3
|
+
"compilerOptions": {
|
|
4
|
+
"target": "ES2022",
|
|
5
|
+
"lib": ["ES2022", "DOM", "DOM.Iterable"],
|
|
6
|
+
"module": "ESNext",
|
|
7
|
+
"moduleResolution": "bundler",
|
|
8
|
+
"jsx": "react-jsx",
|
|
9
|
+
"strict": true,
|
|
10
|
+
"noEmit": true,
|
|
11
|
+
"skipLibCheck": true,
|
|
12
|
+
"allowImportingTsExtensions": true,
|
|
13
|
+
"paths": {
|
|
14
|
+
"@folienbaukasten/platform": ["./abi/types/sets/platform.d.ts"]
|
|
15
|
+
}
|
|
16
|
+
}
|
|
17
|
+
}
|