next-stripe-helper
Advanced tools
Comparing version 1.0.11 to 1.1.0
{ | ||
"name": "next-stripe-helper", | ||
"version": "1.0.11", | ||
"version": "1.1.0", | ||
"description": "Easily add Stripe boilerplate code to Nextjs, like webhook handling, and subscription updates. This package provides a thin wrapper around the Stripe API, and makes integrating Stripe and NextJS a lot faster!", | ||
"main": "index.js", | ||
"main": "dist/index.js", | ||
"types": "dist/index.d.ts", | ||
"scripts": { | ||
@@ -20,7 +21,5 @@ "test": "echo \"Error: no test specified\" && exit 1" | ||
"dependencies": { | ||
"stripe": "^13.2.0" | ||
}, | ||
"devDependencies": { | ||
"stripe": "^13.2.0", | ||
"@types/stripe": "^8.0.417" | ||
} | ||
} |
{ | ||
"compilerOptions": { | ||
/* Basic Options */ | ||
"target": "ES2020", // Specify ECMAScript target version | ||
"module": "commonjs", // Specify module code generation | ||
"outDir": "./dist", // Redirect output structure to this directory | ||
"rootDir": "./src", // Specify the root directory of input files | ||
/* Strict Type-Checking Options */ | ||
"strict": true, // Enable all strict type-checking options | ||
"esModuleInterop": true, // Enables CommonJS/AMD/UMD module emit to use ES6 module syntax | ||
/* Additional Checks */ | ||
"noUnusedLocals": true, // Report errors on unused locals | ||
"noUnusedParameters": true, // Report errors on unused parameters | ||
/* Module Resolution Options */ | ||
"moduleResolution": "node", // Use Node.js-style module resolution | ||
/* Source Map Options */ | ||
"sourceMap": true, // Generate corresponding '.map' file | ||
/* Experimental Options */ | ||
"experimentalDecorators": true, // Enables experimental support for ES7 decorators | ||
"skipLibCheck": true, // Skip type checking of declaration files | ||
/* Advanced Options */ | ||
"forceConsistentCasingInFileNames": true // Disallow inconsistently-cased references to the same file | ||
"declaration": true, | ||
"target": "ES2020", | ||
"module": "commonjs", | ||
"outDir": "./dist", | ||
"rootDir": "./src", | ||
"strict": true, | ||
"esModuleInterop": true, | ||
"noUnusedLocals": true, | ||
"noUnusedParameters": true, | ||
"moduleResolution": "node", | ||
"sourceMap": true, | ||
"experimentalDecorators": true, | ||
"skipLibCheck": true, | ||
"forceConsistentCasingInFileNames": true | ||
}, | ||
"include": [ | ||
"src/**/*.ts" // Source files to be compiled by TypeScript | ||
"src/**/*.ts" | ||
], | ||
"exclude": [ | ||
"node_modules", // Exclude Node.js modules from the compilation | ||
"dist" // Exclude the output directory from the compilation | ||
"node_modules", | ||
"dist" | ||
] | ||
} |
Environment variable access
Supply chain riskPackage accesses environment variables, which may be a sign of credential stuffing or data theft.
Found 4 instances in 1 package
80668
0
35
1161
2
5
+ Added@types/stripe@^8.0.417
+ Added@types/node@22.12.0(transitive)
+ Added@types/stripe@8.0.417(transitive)
+ Addedobject-inspect@1.13.3(transitive)
- Removed@types/node@22.13.1(transitive)
- Removedobject-inspect@1.13.4(transitive)