@crewx/sdk 0.8.5-rc.0 → 0.8.6-rc.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 +14 -16
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@crewx/sdk",
|
|
3
|
-
"version": "0.8.
|
|
3
|
+
"version": "0.8.6-rc.0",
|
|
4
4
|
"license": "UNLICENSED",
|
|
5
5
|
"engines": {
|
|
6
6
|
"node": ">=20.19.0"
|
|
@@ -68,20 +68,6 @@
|
|
|
68
68
|
"src/schemas/**/*.json",
|
|
69
69
|
"README.md"
|
|
70
70
|
],
|
|
71
|
-
"scripts": {
|
|
72
|
-
"build:cjs": "npx tsup --config tsup.cjs.js",
|
|
73
|
-
"build:esm": "npx tsup --config tsup.esm.js",
|
|
74
|
-
"build:browser": "npx tsup --config tsup.browser.js",
|
|
75
|
-
"build:dts": "tsc -p tsconfig.dts.json",
|
|
76
|
-
"build": "pnpm run build:cjs && pnpm run build:esm && pnpm run build:browser && pnpm run build:dts && node scripts/copy-migrations.mjs",
|
|
77
|
-
"db:generate": "cd ../.. && drizzle-kit generate --config drizzle.config.ts && node packages/sdk/scripts/post-generate.mjs",
|
|
78
|
-
"db:check": "cd ../.. && drizzle-kit check --config drizzle.config.ts",
|
|
79
|
-
"prepare": "pnpm run build",
|
|
80
|
-
"prepack": "node scripts/check-sdk-templates.mjs",
|
|
81
|
-
"test": "vitest run --config ./vitest.config.ts",
|
|
82
|
-
"test:watch": "vitest --config ./vitest.config.ts",
|
|
83
|
-
"lint": "echo 'SDK lint pending' && exit 0"
|
|
84
|
-
},
|
|
85
71
|
"dependencies": {
|
|
86
72
|
"@agentclientprotocol/sdk": "^0.21.0",
|
|
87
73
|
"@modelcontextprotocol/sdk": "^1.27.0",
|
|
@@ -129,5 +115,17 @@
|
|
|
129
115
|
"tsup": "^8.5.1",
|
|
130
116
|
"typescript": "^5.4.0",
|
|
131
117
|
"vitest": "^3.1.1"
|
|
118
|
+
},
|
|
119
|
+
"scripts": {
|
|
120
|
+
"build:cjs": "npx tsup --config tsup.cjs.js",
|
|
121
|
+
"build:esm": "npx tsup --config tsup.esm.js",
|
|
122
|
+
"build:browser": "npx tsup --config tsup.browser.js",
|
|
123
|
+
"build:dts": "tsc -p tsconfig.dts.json",
|
|
124
|
+
"build": "pnpm run build:cjs && pnpm run build:esm && pnpm run build:browser && pnpm run build:dts && node scripts/copy-migrations.mjs",
|
|
125
|
+
"db:generate": "cd ../.. && drizzle-kit generate --config drizzle.config.ts && node packages/sdk/scripts/post-generate.mjs",
|
|
126
|
+
"db:check": "cd ../.. && drizzle-kit check --config drizzle.config.ts",
|
|
127
|
+
"test": "vitest run --config ./vitest.config.ts",
|
|
128
|
+
"test:watch": "vitest --config ./vitest.config.ts",
|
|
129
|
+
"lint": "echo 'SDK lint pending' && exit 0"
|
|
132
130
|
}
|
|
133
|
-
}
|
|
131
|
+
}
|