map-anything
Advanced tools
Comparing version 2.1.1 to 2.1.2
{ | ||
"name": "map-anything", | ||
"version": "2.1.2", | ||
"description": "Array.map but for objects with good TypeScript support. A small and simple integration.", | ||
"type": "module", | ||
"sideEffects": false, | ||
"type": "module", | ||
"version": "2.1.1", | ||
"description": "Array.map but for objects with good TypeScript support. A small and simple integration.", | ||
"module": "./dist/index.es.js", | ||
"main": "./dist/index.cjs", | ||
"types": "./dist/types/index.d.ts", | ||
"types": "./dist/index.d.ts", | ||
"module": "./dist/index.js", | ||
"main": "./dist/index.js", | ||
"exports": { | ||
".": { | ||
"types": "./dist/types/index.d.ts", | ||
"import": "./dist/index.es.js", | ||
"require": "./dist/index.cjs" | ||
"require": { | ||
"types": "./dist/cjs/index.d.cts", | ||
"default": "./dist/cjs/index.cjs" | ||
}, | ||
"import": { | ||
"types": "./dist/index.d.ts", | ||
"default": "./dist/index.js" | ||
} | ||
} | ||
@@ -26,3 +31,3 @@ }, | ||
"lint": "tsc --noEmit && eslint ./src --ext .ts", | ||
"build": "rollup --bundleConfigAsCjs -c ./scripts/build.js", | ||
"build": "rollup -c ./rollup.config.js", | ||
"release": "npm run lint && del dist && npm run build && np" | ||
@@ -33,3 +38,3 @@ }, | ||
"@typescript-eslint/parser": "^5.59.2", | ||
"del-cli": "^4.0.1", | ||
"del-cli": "^5.0.0", | ||
"eslint": "^8.40.0", | ||
@@ -40,4 +45,5 @@ "eslint-config-prettier": "^8.8.0", | ||
"prettier": "^2.8.8", | ||
"rollup": "^3.21.5", | ||
"rollup-plugin-typescript2": "^0.34.1", | ||
"rollup": "^3.23.0", | ||
"rollup-plugin-dts": "^5.3.0", | ||
"rollup-plugin-esbuild": "^5.0.0", | ||
"typescript": "^4.9.5", | ||
@@ -44,0 +50,0 @@ "vitest": "^0.31.0" |
9783
7
13
41