constructa-sdk 0.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/README.md +5 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +0 -0
- package/package.json +37 -0
package/README.md
ADDED
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
# `constructa-sdk`
|
|
2
|
+
|
|
3
|
+
Stable developer-facing API for configuring and running Constructa generators.
|
|
4
|
+
|
|
5
|
+
The SDK will assemble the core engine, built-in generators, and exporters behind a convenient public interface. Applications and external consumers should prefer this package over relying on internal implementation details.
|
package/dist/index.d.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {}
|
package/dist/index.js
ADDED
|
File without changes
|
package/package.json
ADDED
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "constructa-sdk",
|
|
3
|
+
"version": "0.0.1",
|
|
4
|
+
"description": "The supported developer-facing API for Constructa.",
|
|
5
|
+
"private": false,
|
|
6
|
+
"license": "MIT",
|
|
7
|
+
"type": "module",
|
|
8
|
+
"files": [
|
|
9
|
+
"dist"
|
|
10
|
+
],
|
|
11
|
+
"main": "./dist/index.js",
|
|
12
|
+
"types": "./dist/index.d.ts",
|
|
13
|
+
"exports": {
|
|
14
|
+
".": {
|
|
15
|
+
"types": "./dist/index.d.ts",
|
|
16
|
+
"import": "./dist/index.js",
|
|
17
|
+
"default": "./dist/index.js"
|
|
18
|
+
}
|
|
19
|
+
},
|
|
20
|
+
"scripts": {
|
|
21
|
+
"build": "tsdown",
|
|
22
|
+
"check-types": "tsc --noEmit"
|
|
23
|
+
},
|
|
24
|
+
"publishConfig": {
|
|
25
|
+
"access": "public"
|
|
26
|
+
},
|
|
27
|
+
"dependencies": {
|
|
28
|
+
"constructa-core": "workspace:*",
|
|
29
|
+
"constructa-exporters": "workspace:*",
|
|
30
|
+
"constructa-generators": "workspace:*",
|
|
31
|
+
"constructa-schema": "workspace:*"
|
|
32
|
+
},
|
|
33
|
+
"devDependencies": {
|
|
34
|
+
"@constructa/config": "workspace:*",
|
|
35
|
+
"typescript": "catalog:"
|
|
36
|
+
}
|
|
37
|
+
}
|