@better-openclaw/core 1.0.1 → 1.0.3

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.
@@ -33,6 +33,6 @@ jobs:
33
33
  - run: pnpm build
34
34
 
35
35
  - name: Publish Core to npm
36
- run: pnpm publish --no-git-checks --access public
36
+ run: npm publish
37
37
  env:
38
38
  NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
package/package.json CHANGED
@@ -1,9 +1,10 @@
1
1
  {
2
2
  "name": "@better-openclaw/core",
3
- "version": "1.0.1",
3
+ "version": "1.0.3",
4
4
  "private": false,
5
5
  "description": "Core logic for better-openclaw: schemas, service registry, resolver, composer, validators and more",
6
6
  "type": "module",
7
+ "packageManager": "pnpm@9.15.4",
7
8
  "sideEffects": false,
8
9
  "main": "./dist/index.js",
9
10
  "types": "./dist/index.d.ts",
@@ -13,17 +14,8 @@
13
14
  "import": "./dist/index.js"
14
15
  }
15
16
  },
16
- "dependencies": {
17
- "handlebars": "^4.7.8",
18
- "yaml": "^2.8.2",
19
- "zod": "^4.3.6"
20
- },
21
- "devDependencies": {
22
- "@types/node": "^25.2.2",
23
- "typescript": "^5.9.3",
24
- "vitest": "^4.0.18"
25
- },
26
17
  "scripts": {
18
+ "prepublishOnly": "pnpm run build",
27
19
  "build": "tsc",
28
20
  "dev": "tsc --watch",
29
21
  "test": "vitest run",
@@ -33,5 +25,15 @@
33
25
  "lint:fix": "biome check --write src/",
34
26
  "typecheck": "tsc --noEmit",
35
27
  "clean": "rimraf dist"
28
+ },
29
+ "dependencies": {
30
+ "handlebars": "^4.7.8",
31
+ "yaml": "^2.8.2",
32
+ "zod": "^4.3.6"
33
+ },
34
+ "devDependencies": {
35
+ "@types/node": "^25.2.2",
36
+ "typescript": "^5.9.3",
37
+ "vitest": "^4.0.18"
36
38
  }
37
- }
39
+ }