Skip to content
This repository has been archived by the owner on Aug 16, 2022. It is now read-only.

Commit

Permalink
build: add ./utils and ./utils/* exports
Browse files Browse the repository at this point in the history
  • Loading branch information
unicornware committed Oct 9, 2021
1 parent 9119cc1 commit 07b3d30
Showing 1 changed file with 12 additions and 4 deletions.
16 changes: 12 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,14 @@
"./types/*": {
"import": "./esm/types/*.mjs",
"require": "./cjs/types/*.cjs"
},
"./utils": {
"import": "./esm/utils/index.mjs",
"require": "./cjs/utils/index.cjs"
},
"./utils/*": {
"import": "./esm/utils/*.mjs",
"require": "./cjs/utils/*.cjs"
}
},
"main": "./cjs/trext.min.cjs",
Expand Down Expand Up @@ -186,22 +194,22 @@
"ts-node": "10.2.1",
"tsconfig-paths": "3.11.0",
"ttypescript": "1.5.12",
"typescript": "4.5.0-beta",
"typescript": "4.4.3",
"yargs": "17.2.1"
},
"optionalDependencies": {
"@types/node": ">=12.20.0"
"@types/node": ">=15"
},
"peerDependencies": {
"typescript": "4.5.0-beta"
"typescript": ">=4.4.0"
},
"peerDependenciesMeta": {
"typescript": {
"optional": true
}
},
"engines": {
"node": ">=12.20.0",
"node": ">=15",
"yarn": "3.0.2"
},
"env": {
Expand Down

0 comments on commit 07b3d30

Please sign in to comment.