Files
windmill/typescript-client/package.json
T
Mark Lai 07fb47e215 feat: typescript client esm build (#7709)
* feat: typescript client esm build

* fix: add --dts flag and restore tsconfig options for typescript client ESM build

- Add --dts flag to tsdown commands to generate declaration files
- Restore outDir in tsconfig.json for compatibility
- Restore forceConsistentCasingInFileNames for case-sensitive systems
- Update README_DEV.md to reflect new tsdown build process

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>

---------

Co-authored-by: Ruben Fiszel <ruben@windmill.dev>
Co-authored-by: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-28 11:30:57 +00:00

42 lines
851 B
JSON

{
"name": "windmill-client",
"description": "Windmill SDK client for browsers and Node.js",
"version": "1.617.3",
"author": "Ruben Fiszel",
"license": "Apache 2.0",
"devDependencies": {
"@types/node": "^20.17.16",
"tsdown": "^0.12.9",
"typescript": "^5.4.5"
},
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.mts",
"exports": {
".": {
"require": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"import": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
}
}
},
"typesVersions": {
"*": {
"*": [
"./dist/index.d.mts"
]
}
},
"prepublish": "tsdown --format esm --format cjs --dts",
"files": [
"dist",
"LICENSE",
"README.md",
"package.json"
]
}