@sna-sdk/core 0.0.9 → 0.0.10

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.
Files changed (1) hide show
  1. package/package.json +7 -8
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sna-sdk/core",
3
- "version": "0.0.9",
3
+ "version": "0.0.10",
4
4
  "description": "Skills-Native Application runtime — server, providers, session management, database, and CLI",
5
5
  "type": "module",
6
6
  "bin": {
@@ -65,12 +65,6 @@
65
65
  "default": "./dist/lib/sna-run.js"
66
66
  }
67
67
  },
68
- "scripts": {
69
- "build": "tsup",
70
- "dev": "tsx --watch src/server/standalone.ts || true",
71
- "test": "node --import tsx --test test/**/*.test.ts",
72
- "prepublishOnly": "pnpm build"
73
- },
74
68
  "engines": {
75
69
  "node": ">=18.0.0"
76
70
  },
@@ -101,5 +95,10 @@
101
95
  "tsup": "^8.0.0",
102
96
  "tsx": "^4.0.0",
103
97
  "typescript": "^5.0.0"
98
+ },
99
+ "scripts": {
100
+ "build": "tsup",
101
+ "dev": "tsx --watch src/server/standalone.ts || true",
102
+ "test": "node --import tsx --test test/**/*.test.ts"
104
103
  }
105
- }
104
+ }