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

next-stripe-helper

Package Overview
Dependencies
Maintainers
1
Versions
71
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

next-stripe-helper - npm Package Compare versions

Comparing version 1.0.11 to 1.1.0

dist/checkout/index.d.ts

9

package.json
{
"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"
]
}
SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc