@oliversalzburg/js-utils
Advanced tools
Comparing version 0.0.1 to 0.0.2
{ | ||
"$schema": "https://json.schemastore.org/package.json", | ||
"name": "@oliversalzburg/js-utils", | ||
"version": "0.0.1", | ||
"version": "0.0.2", | ||
"license": "MIT", | ||
"author": "Oliver Salzburg <oliver.salzburg@gmail.com>", | ||
"type": "module", | ||
"exports": "./output/index.js", | ||
"exports": { | ||
".": { | ||
"default": "./output/index.js" | ||
}, | ||
"./*.js": { | ||
"default": "./output/*.js" | ||
} | ||
}, | ||
"scripts": { | ||
@@ -14,2 +22,6 @@ "build": "yarn run build:tsc", | ||
"lint:tsc": "tsc --noEmit", | ||
"npm:publish": "npm publish", | ||
"npm:publish:major": "npm version major && npm publish", | ||
"npm:publish:minor": "npm version minor && npm publish", | ||
"npm:publish:patch": "npm version patch && npm publish", | ||
"prepack": "yarn run build" | ||
@@ -16,0 +28,0 @@ }, |
10425