Big News: Socket raises $60M Series C at a $1B valuation to secure software supply chains for AI-driven development.Announcement
Sign In

@inversifyjs/prototype-utils

Package Overview
Dependencies
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@inversifyjs/prototype-utils - npm Package Compare versions

Comparing version
0.1.0
to
0.1.1
+7
-0
CHANGELOG.md
# @inversifyjs/prototype-utils
## 0.1.1
### Patch Changes
- Updated dependencies
- @inversifyjs/common@1.5.1
## 0.1.0

@@ -4,0 +11,0 @@

+2
-1

@@ -9,2 +9,3 @@ import { Newable } from '@inversifyjs/common';

export { type Prototype, getBaseType };
export { getBaseType };
export type { Prototype };
{
"name": "@inversifyjs/prototype-utils",
"version": "0.1.0",
"version": "0.1.1",
"description": "Prototype related utils",

@@ -29,23 +29,18 @@ "main": "lib/cjs/index.js",

"dependencies": {
"@inversifyjs/common": "1.5.0"
"@inversifyjs/common": "1.5.1"
},
"devDependencies": {
"@eslint/js": "9.17.0",
"@jest/globals": "29.7.0",
"@stryker-mutator/core": "8.7.1",
"@stryker-mutator/jest-runner": "8.7.1",
"@stryker-mutator/typescript-checker": "8.7.1",
"@types/node": "22.10.5",
"@typescript-eslint/eslint-plugin": "8.19.1",
"@typescript-eslint/parser": "8.19.1",
"eslint": "9.17.0",
"jest": "29.7.0",
"prettier": "3.4.2",
"@stryker-mutator/core": "9.0.1",
"@stryker-mutator/vitest-runner": "9.0.1",
"@stryker-mutator/typescript-checker": "9.0.1",
"@types/node": "22.15.33",
"@vitest/coverage-v8": "3.2.4",
"eslint": "9.29.0",
"prettier": "3.6.0",
"rimraf": "6.0.1",
"rollup": "4.30.1",
"ts-loader": "9.5.1",
"ts-jest": "29.2.5",
"ts-node": "10.9.2",
"rollup": "4.44.0",
"ts-loader": "9.5.2",
"tslib": "2.8.1",
"typescript": "5.7.3"
"typescript": "5.8.3",
"vitest": "3.2.4"
},

@@ -65,13 +60,12 @@ "devEngines": {

"build:clean": "rimraf lib",
"format": "prettier --write ./src/**/*.ts",
"format": "prettier --write ./src",
"lint": "eslint ./src",
"prebuild": "pnpm run build:clean",
"test": "jest --config=jest.config.mjs --runInBand",
"test:integration:js": "pnpm run test:js --selectProjects Integration",
"test:js": "jest --config=jest.js.config.mjs --runInBand",
"test:js:coverage": "pnpm run test:unit:js --coverage",
"test": "vitest run",
"test:integration": "pnpm run test --project Integration",
"test:coverage": "pnpm run test:unit --coverage",
"test:mutation": "stryker run",
"test:uncommitted": "pnpm run test --changedSince=HEAD",
"test:unit:js": "pnpm run test:js --selectProjects Unit"
"test:uncommitted": "pnpm run test --changed=HEAD",
"test:unit": "pnpm run test --project Unit"
}
}