New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@pojo-router/core

Package Overview
Dependencies
Maintainers
4
Versions
117
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@pojo-router/core - npm Package Compare versions

Comparing version

to
0.5.77

7

CHANGELOG.md

@@ -6,2 +6,9 @@ # Change Log

### [0.5.77](https://github.com/ntucker/anansi/compare/@pojo-router/core@0.5.76...@pojo-router/core@0.5.77) (2023-03-26)
### 📦 Package
* Add missing packages ([aee7ef8](https://github.com/ntucker/anansi/commit/aee7ef83a19e352ff7ee03cd89914810ebf1ed6f))
* Remove prerelease ranges ([1699480](https://github.com/ntucker/anansi/commit/169948070ab28c4a1038398459cc7f61d6b28800))
### [0.5.76](https://github.com/ntucker/anansi/compare/@pojo-router/core@0.5.75...@pojo-router/core@0.5.76) (2023-03-24)

@@ -8,0 +15,0 @@

22

package.json
{
"name": "@pojo-router/core",
"version": "0.5.76",
"version": "0.5.77",
"description": "A react hooks library to associate metadata to a path",

@@ -50,8 +50,11 @@ "homepage": "https://github.com/ntucker/anansi/tree/master/packages/pojo-router#readme",

"devDependencies": {
"@anansi/babel-preset": "^4.1.2",
"@anansi/browserslist-config": "^1.4.1",
"@anansi/webpack-config": "^15.0.0",
"@anansi/babel-preset": "^4.1.3",
"@anansi/browserslist-config": "^1.4.2",
"@anansi/webpack-config": "^15.0.1",
"@babel/cli": "7.21.0",
"@babel/core": "7.21.3",
"@types/node": "^18.15.9",
"@types/react": "^18.0.29",
"jest": "29.5.0",
"react": "^18.2.0",
"rimraf": "4.4.1",

@@ -67,4 +70,4 @@ "webpack": "5.76.3",

"peerDependencies": {
"@types/react": "^16.8.0 || ^17.0.0 || ^18.0.0-0",
"react": "^16.8.2 || ^17.0.0 || ^18.0.0-0"
"@types/react": "^16.8.0 || ^17.0.0 || ^18.0.0",
"react": "^16.8.2 || ^17.0.0 || ^18.0.0"
},

@@ -82,10 +85,11 @@ "peerDependenciesMeta": {

"test": "jest",
"test:ci": "jest",
"test:type": "tsc",
"dev": "yarn run build:bundle -w",
"build": "yarn run build:lib && yarn run build:bundle",
"dev": "run build:bundle -w",
"build": "run build:lib && run build:bundle",
"build:lib": "NODE_ENV=production BROWSERSLIST_ENV='2020' babel --root-mode upward src --out-dir lib --source-maps inline --extensions '.ts,.tsx,.js' --ignore '**/__tests__/**' --ignore '**/*.d.ts'",
"build:clean": "rimraf lib dist ts3.4 legacy dist *.tsbuildinfo",
"build:bundle": "BROWSERSLIST_ENV=node12 webpack --mode=none --target=node && echo '{\"type\":\"commonjs\"}' > dist/package.json",
"prepack": "yarn build"
"prepack": "run build"
}
}