Skip to content

Commit

Permalink
fix package json extensions
Browse files Browse the repository at this point in the history
  • Loading branch information
Helveg committed Dec 8, 2024
1 parent 0ef410d commit 5a5a125
Showing 1 changed file with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,22 +1,21 @@
{
"name": "nestjs-inject-transformer",
"version": "1.0.3",
"version": "1.0.5",
"description": "Amp up your NestJS and `class-transformer` stack with dependency injected transforms.",
"main": "./dist/cjs/index.mjs",
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.mjs",
"types": "./dist/types/index.d.ts",
"types": "./dist/types/index.d.mts",
"exports": {
".": {
"require": "./dist/cjs/index.mjs",
"require": "./dist/cjs/index.js",
"import": "./dist/esm/index.mjs"
}
},
"directories": {
"lib": "lib"
},
"files": [
"dist",
"lib"
"dist"
],
"scripts": {
"build": "run-s build:esm build:cjs build:types",
Expand Down

0 comments on commit 5a5a125

Please sign in to comment.