mirror of
https://github.com/deepseek-ai/deepseek-harness.git
synced 2026-08-29 04:26:38 +00:00
Move examples/jsonrpc-agent to examples/python-sdk-agent and packages/examples/jsonrpc-demo to packages/sdk/python-runtime while preserving every file byte-for-byte. The directory placement now reflects the example's Python-distribution role and the private runtime carrier's SDK ownership. This commit deliberately keeps the old package names, commands, configuration, and snapshots inside their new directories. All 42 files are 100% renames; API/profile migration and naming changes follow separately so reviewers do not have to disentangle behavior from filesystem movement.
22 lines
1000 B
TypeScript
22 lines
1000 B
TypeScript
import { defineConfig } from 'tsdown'
|
|
|
|
/** Builds each published entry as a self-contained file admitted by the package whitelist. */
|
|
export default defineConfig([
|
|
{
|
|
entry: ['lib/types/index.js'], outDir: 'lib', format: ['esm'], platform: 'node', target: 'es2024',
|
|
fixedExtension: false, outputOptions: { codeSplitting: false }, dts: false, clean: false,
|
|
},
|
|
{
|
|
entry: ['lib/types/invariant.js'], outDir: 'lib', format: ['esm'], platform: 'node', target: 'es2024',
|
|
fixedExtension: false, outputOptions: { codeSplitting: false }, dts: false, clean: false,
|
|
},
|
|
{
|
|
entry: ['lib/types/bin.js'], outDir: 'lib', format: ['esm'], platform: 'node', target: 'es2024',
|
|
fixedExtension: false, outputOptions: { codeSplitting: false }, dts: false, clean: false,
|
|
},
|
|
{
|
|
entry: ['lib/types/packaged-bin.js'], outDir: 'lib', format: ['esm'], platform: 'node', target: 'es2024',
|
|
fixedExtension: false, outputOptions: { codeSplitting: false }, dts: false, clean: false,
|
|
},
|
|
])
|