remove tsdown

This commit is contained in:
Joel Wetzell
2026-06-03 22:11:07 -05:00
parent 694d562f3e
commit 5256b54cb1
12 changed files with 904 additions and 45 deletions
+9 -11
View File
@@ -2,22 +2,19 @@
"name": "@jwetzell/free-d",
"version": "0.1.0",
"description": "libray for encoding/decoding free-d messages",
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"types": "./dist/types/index.d.ts",
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.cts",
"exports": {
".": {
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js",
"types": "./dist/types/index.d.ts"
}
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
},
"./package.json": "./package.json"
},
"scripts": {
"prebuild": "rimraf dist",
"build": "npm run build:cjs && npm run build:esm && npm run build:types",
"build:cjs": "tsc -p tsconfig.cjs.json",
"build:esm": "tsc -p tsconfig.esm.json",
"build:types": "tsc -p tsconfig.types.json",
"build": "tsdown",
"prepublishOnly": "npm run build",
"pretest": "npm run build",
"test": "node --test --experimental-test-coverage"
@@ -38,6 +35,7 @@
"devDependencies": {
"@types/node": "25.8.0",
"rimraf": "6.1.3",
"tsdown": "0.22.1",
"typescript": "5.9.3"
}
}