array-fp-utils
Advanced tools
Comparing version 0.3.0 to 0.3.3
@@ -1,2 +0,2 @@ | ||
Copyright 2022 Causaly | ||
Copyright 2022-2023 Causaly | ||
@@ -3,0 +3,0 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: |
{ | ||
"name": "array-fp-utils", | ||
"version": "0.3.0", | ||
"version": "0.3.3", | ||
"description": "Array utilities for functional programming in TypeScript.", | ||
@@ -40,30 +40,31 @@ "keywords": [ | ||
"sideEffects": false, | ||
"types": "./build/index.d.ts", | ||
"main": "./build/node/cjs/index.js", | ||
"types": "./dist/types/index.d.ts", | ||
"main": "./dist/cjs/index.js", | ||
"exports": { | ||
".": { | ||
"node": { | ||
"import": "./build/node/esm/index.js", | ||
"require": "./build/node/cjs/index.js" | ||
"import": "./dist/esm/index.js", | ||
"require": "./dist/cjs/index.js" | ||
}, | ||
"default": "./build/browser/esm/index.js" | ||
"default": "./dist/esm/index.js" | ||
} | ||
}, | ||
"files": [ | ||
"build" | ||
"dist" | ||
], | ||
"engines": { | ||
"node": "^14.17 || >=16.0.0" | ||
"node": ">=16.0.0" | ||
}, | ||
"scripts": { | ||
"build:node-cjs": "swc lib --config-file ./config/node-cjs.json -d build/node/cjs", | ||
"build:node-esm": "swc lib --config-file ./config/node-esm.json -d build/node/esm", | ||
"build:browser-esm": "swc lib --config-file ./config/browser-esm.json -d ./build/browser/esm", | ||
"build": "rimraf build && concurrently \"tsc -p tsconfig.json\" \"yarn build:node-cjs\" \"yarn build:node-esm\" \"yarn build:browser-esm\"", | ||
"typecheck": "tsc --noEmit", | ||
"build:cjs": "tsc -p ./tsconfig.build-cjs.json", | ||
"build:esm": "tsc -p ./tsconfig.build-esm.json", | ||
"build:types": "tsc -p ./tsconfig.build-types.json", | ||
"build": "rimraf dist && concurrently \"npm run build:types\" \"npm run build:esm\" \"npm run build:cjs\"", | ||
"lint": "eslint lib --ext .ts", | ||
"format": "prettier --config ./.prettierrc --ignore-path .gitignore -w .", | ||
"test": "jest --config jest.config.ts", | ||
"coverage": "jest --config jest.config.ts --coverage", | ||
"test": "jest", | ||
"coverage": "jest --coverage", | ||
"changeset": "changeset", | ||
"prerelease": "yarn build && yarn test", | ||
"prerelease": "npm run build && npm run test", | ||
"release": "changeset publish" | ||
@@ -88,4 +89,2 @@ }, | ||
"@commitlint/config-conventional": "^17.1.0", | ||
"@swc/cli": "^0.1.55", | ||
"@swc/core": "^1.2.146", | ||
"@types/jest": "^29.0.3", | ||
@@ -107,8 +106,4 @@ "@types/node": "^18.7.14", | ||
"ts-jest": "^29.0.2", | ||
"ts-node": "^10.9.1", | ||
"typescript": "^4.8.2" | ||
}, | ||
"dependencies": { | ||
"@swc/helpers": "^0.3.2" | ||
"typescript": "^5.0.4" | ||
} | ||
} |
@@ -21,3 +21,3 @@ # array-fp-utils | ||
- Node.js v.14+ | ||
- Node.js v.16+ | ||
@@ -24,0 +24,0 @@ ## API |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
30959
0
21
91
331
1
- Removed@swc/helpers@^0.3.2
- Removed@swc/helpers@0.3.17(transitive)
- Removedtslib@2.8.1(transitive)