@kb-labs/core-state-daemon 1.0.0 → 1.2.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/package.json +13 -13
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kb-labs/core-state-daemon",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.2.0",
|
|
4
4
|
"description": "State daemon server for persistent cross-invocation state",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -19,6 +19,16 @@
|
|
|
19
19
|
"dist"
|
|
20
20
|
],
|
|
21
21
|
"sideEffects": false,
|
|
22
|
+
"scripts": {
|
|
23
|
+
"clean": "rimraf dist",
|
|
24
|
+
"build": "pnpm clean && tsup --config tsup.bin.config.ts && tsup --config tsup.lib.config.ts",
|
|
25
|
+
"dev": "tsup --config tsup.config.ts --watch",
|
|
26
|
+
"type-check": "tsc --noEmit",
|
|
27
|
+
"test": "vitest run --passWithNoTests",
|
|
28
|
+
"test:watch": "vitest",
|
|
29
|
+
"lint": "eslint src --ext .ts",
|
|
30
|
+
"lint:fix": "eslint . --fix"
|
|
31
|
+
},
|
|
22
32
|
"dependencies": {
|
|
23
33
|
"@kb-labs/core-state-broker": "link:../core-state-broker",
|
|
24
34
|
"@kb-labs/core-runtime": "link:../core-runtime",
|
|
@@ -27,7 +37,7 @@
|
|
|
27
37
|
"@kb-labs/shared-command-kit": "link:../../../kb-labs-shared/packages/shared-command-kit"
|
|
28
38
|
},
|
|
29
39
|
"devDependencies": {
|
|
30
|
-
"@kb-labs/devkit": "
|
|
40
|
+
"@kb-labs/devkit": "^1.0.0",
|
|
31
41
|
"@types/node": "^24.3.3",
|
|
32
42
|
"rimraf": "^6.0.1",
|
|
33
43
|
"tsup": "^8.5.0",
|
|
@@ -40,15 +50,5 @@
|
|
|
40
50
|
},
|
|
41
51
|
"publishConfig": {
|
|
42
52
|
"access": "public"
|
|
43
|
-
},
|
|
44
|
-
"scripts": {
|
|
45
|
-
"clean": "rimraf dist",
|
|
46
|
-
"build": "pnpm clean && tsup --config tsup.bin.config.ts && tsup --config tsup.lib.config.ts",
|
|
47
|
-
"dev": "tsup --config tsup.config.ts --watch",
|
|
48
|
-
"type-check": "tsc --noEmit",
|
|
49
|
-
"test": "vitest run --passWithNoTests",
|
|
50
|
-
"test:watch": "vitest",
|
|
51
|
-
"lint": "eslint src --ext .ts",
|
|
52
|
-
"lint:fix": "eslint . --fix"
|
|
53
53
|
}
|
|
54
|
-
}
|
|
54
|
+
}
|