Skip to content

Commit

Permalink
🪐 commit
Browse files Browse the repository at this point in the history
  • Loading branch information
antonymott committed Dec 3, 2024
1 parent 065ea38 commit 3c7f087
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 1 deletion.
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
{
"name": "@uqs.org/crystals-kyber-rustykey",
"description": "",
"license": "ISC",
"version": "0.0.2",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsup src/index.ts --format esm --dts",
"build": "tsup src/index.ts",
"release": "pnpm run build && changeset publish",
"lint": "tsc"
},
Expand Down
10 changes: 10 additions & 0 deletions tsup.config.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
import { defineConfig } from "tsup"

export default defineConfig({
entry: ["src/index.ts"],
clean: true,
format: ["esm"],
sourcemap: true,
splitting: true,
dts: true,
})

0 comments on commit 3c7f087

Please sign in to comment.