@semiont/sdk 0.5.3 → 0.5.5
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 +2 -2
- package/dist/index.js +18 -4
- package/dist/index.js.map +1 -1
- package/package.json +6 -4
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@semiont/sdk",
|
|
3
|
-
"version": "0.5.
|
|
3
|
+
"version": "0.5.5",
|
|
4
4
|
"description": "Semiont SDK — SemiontClient, namespaces, session/browser, state units, and the bus-request/cache helpers. Transport-agnostic; pair with @semiont/api-client (HttpTransport) or @semiont/make-meaning (LocalTransport) for the wire.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -31,9 +31,9 @@
|
|
|
31
31
|
"scripts": {
|
|
32
32
|
"pretypecheck": "npm run build --workspace=@semiont/core --if-present && npm run build --workspace=@semiont/api-client --if-present",
|
|
33
33
|
"typecheck": "tsc --noEmit",
|
|
34
|
-
"build": "npm run typecheck && tsup",
|
|
34
|
+
"build": "npm run typecheck && tsup && tsc -p tsconfig.build.json && rollup -c rollup.dts.config.mjs && rm -rf dist-types",
|
|
35
35
|
"watch": "tsup --watch",
|
|
36
|
-
"clean": "rm -rf dist",
|
|
36
|
+
"clean": "rm -rf dist dist-types",
|
|
37
37
|
"test": "vitest run",
|
|
38
38
|
"test:watch": "vitest",
|
|
39
39
|
"test:coverage": "vitest run --coverage"
|
|
@@ -45,8 +45,10 @@
|
|
|
45
45
|
},
|
|
46
46
|
"devDependencies": {
|
|
47
47
|
"@vitest/coverage-v8": "^4.1.0",
|
|
48
|
+
"rollup": "^4.60.3",
|
|
49
|
+
"rollup-plugin-dts": "^6.4.1",
|
|
48
50
|
"tsup": "^8.5.1",
|
|
49
|
-
"typescript": "^
|
|
51
|
+
"typescript": "^6.0.2"
|
|
50
52
|
},
|
|
51
53
|
"keywords": [
|
|
52
54
|
"semiont",
|