Skip to content

Commit

Permalink
chore: update build
Browse files Browse the repository at this point in the history
  • Loading branch information
njokuScript committed Feb 11, 2024
1 parent 8fcce56 commit 10eeedb
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@descent-protocol/sdk",
"version": "0.1.23",
"version": "0.1.24",
"description": "A Typescript library for interacting with the Descent Protocol",
"keywords": [
"xNGN",
Expand All @@ -15,10 +15,9 @@
"license": "MIT",
"author": "Njoku Emmanuel",
"type": "module",
"main": "dist/index.js",
"module": "dist/index.es.js",
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.mjs",
"browser": "dist/index.bundle.js",
"types": "./dist/types.d.ts",
"exports": {
".": {
"import": "./dist/esm/index.mjs",
Expand Down Expand Up @@ -69,6 +68,7 @@
"src/",
"!src/tests"
],
"types": "./dist/types.d.ts",
"scripts": {
"analyze": "size-limit --why",
"format": "prettier --write .",
Expand All @@ -79,7 +79,7 @@
"prepublishOnly": "npm ci && npm run build",
"dev": "concurrently -c yellow,blue -n RLP,SRV \"npm:build:watch\" \"npm:serve\"",
"build:types": "tsc --emitDeclarationOnly --project tsconfig.build.json",
"build": "rollup -c",
"build": "node esbuild.js",
"test": "jest --coverage ./test/",
"test:getter": "jest ./test/getters.test.ts",
"test:vault": "jest ./test/vault.test.ts",
Expand Down

0 comments on commit 10eeedb

Please sign in to comment.