🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more
Socket
DemoInstallSign in
Socket

@axah/apollo-helper

Package Overview
Dependencies
Maintainers
0
Versions
38
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@axah/apollo-helper - npm Package Compare versions

Comparing version

to
0.0.0-20250212140558

dist/index.cjs

48

package.json
{
"name": "@axah/apollo-helper",
"version": "0.0.0-20241220150146",
"version": "0.0.0-20250212140558",
"type": "module",

@@ -8,39 +8,32 @@ "exports": {

"import": {
"types": "./lib/index.d.mts",
"default": "./lib/index.mjs"
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
},
"require": {
"types": "./lib/index.d.cts",
"default": "./lib/index.cjs"
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
}
},
"main": "./lib/index.cjs",
"module": "./lib/index.mjs",
"types": "./lib/index.d.ts",
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"license": "UNLICENSED",
"files": [
"lib"
"dist"
],
"devDependencies": {
"@apollo/client": "^3.7.5",
"@axah/eslint-config": "^3.1.0",
"@axah/tsconfig": "^1.0.3",
"@biomejs/biome": "^1.9.4",
"@changesets/cli": "^2.26.0",
"@types/jest": "^29.4.0",
"@tsconfig/node22": "^22.0.0",
"@tsconfig/strictest": "^2.0.5",
"@types/node": "^22.5.1",
"@types/temp": "^0.9.1",
"eslint": "^8.29.0",
"flowgen": "^1.21.0",
"graphql": "^16.6.0",
"jest": "^29.4.1",
"nodemon": "^3.1.4",
"pino": "^9.3.2",
"prettier": "^3.3.3",
"pkgroll": "^2.8.2",
"publint": "^0.2.10",
"rimraf": "^6.0.1",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.1",
"typescript": "^5.5.4",
"unbuild": "^2.0.0"
"vitest": "^3.0.5"
},

@@ -53,3 +46,4 @@ "peerDependencies": {

"dependencies": {
"temp": "^0.9.4"
"temp": "^0.9.4",
"@types/temp": "^0.9.4"
},

@@ -64,8 +58,8 @@ "engines": {

"scripts": {
"lint": " tsc --noEmit && eslint .",
"build": "pnpm clean && pnpm lint && pnpm test && unbuild && publint",
"clean": "rimraf lib",
"test": "jest",
"release": "pnpm build && pnpm changeset publish"
"build": "pnpm lint && pnpm test && pkgroll --clean-dist --sourcemap && publint",
"release": "pnpm build && pnpm changeset publish",
"fix": "biome check --fix --unsafe",
"lint": "tsc --noEmit && biome check .",
"test": "vitest run "
}
}