@cef-ai/studio-sdk 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/dist/index.d.ts +8 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +9 -0
- package/dist/index.js.map +1 -0
- package/package.json +32 -0
package/dist/index.d.ts
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* `@cef-ai/studio-sdk` — the developer / Agent-Service SDK: publish, pricing,
|
|
3
|
+
* agreements, usage/revenue ledger. Registered stub per ADR-033; token issuance
|
|
4
|
+
* is deferred to v1.1. The dependency edge (`account`) is declared below.
|
|
5
|
+
*/
|
|
6
|
+
export declare const STUDIO_SDK_PACKAGE: "@cef-ai/studio-sdk";
|
|
7
|
+
export declare const STUDIO_SDK_DEPENDENCIES: readonly ["@cef-ai/account"];
|
|
8
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAEA;;;;GAIG;AACH,eAAO,MAAM,kBAAkB,EAAG,oBAA6B,CAAC;AAEhE,eAAO,MAAM,uBAAuB,8BAA6B,CAAC"}
|
package/dist/index.js
ADDED
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { ACCOUNT_PACKAGE } from "@cef-ai/account";
|
|
2
|
+
/**
|
|
3
|
+
* `@cef-ai/studio-sdk` — the developer / Agent-Service SDK: publish, pricing,
|
|
4
|
+
* agreements, usage/revenue ledger. Registered stub per ADR-033; token issuance
|
|
5
|
+
* is deferred to v1.1. The dependency edge (`account`) is declared below.
|
|
6
|
+
*/
|
|
7
|
+
export const STUDIO_SDK_PACKAGE = "@cef-ai/studio-sdk";
|
|
8
|
+
export const STUDIO_SDK_DEPENDENCIES = [ACCOUNT_PACKAGE];
|
|
9
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,eAAe,EAAE,MAAM,iBAAiB,CAAC;AAElD;;;;GAIG;AACH,MAAM,CAAC,MAAM,kBAAkB,GAAG,oBAA6B,CAAC;AAEhE,MAAM,CAAC,MAAM,uBAAuB,GAAG,CAAC,eAAe,CAAU,CAAC"}
|
package/package.json
ADDED
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@cef-ai/studio-sdk",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"type": "module",
|
|
5
|
+
"main": "./dist/index.js",
|
|
6
|
+
"types": "./dist/index.d.ts",
|
|
7
|
+
"exports": {
|
|
8
|
+
".": {
|
|
9
|
+
"types": "./dist/index.d.ts",
|
|
10
|
+
"default": "./dist/index.js"
|
|
11
|
+
}
|
|
12
|
+
},
|
|
13
|
+
"files": [
|
|
14
|
+
"dist"
|
|
15
|
+
],
|
|
16
|
+
"publishConfig": {
|
|
17
|
+
"access": "public"
|
|
18
|
+
},
|
|
19
|
+
"dependencies": {
|
|
20
|
+
"@cef-ai/account": "1.0.0"
|
|
21
|
+
},
|
|
22
|
+
"devDependencies": {
|
|
23
|
+
"@types/node": "^20.0.0",
|
|
24
|
+
"typescript": "^5.4.0",
|
|
25
|
+
"vitest": "^1.5.0"
|
|
26
|
+
},
|
|
27
|
+
"scripts": {
|
|
28
|
+
"build": "tsc -b",
|
|
29
|
+
"test": "vitest run",
|
|
30
|
+
"lint": "eslint src"
|
|
31
|
+
}
|
|
32
|
+
}
|