Socket
Socket
Sign inDemoInstall

staack

Package Overview
Dependencies
Maintainers
1
Versions
16
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

staack - npm Package Compare versions

Comparing version 1.0.6 to 1.0.7

36

package.json
{
"name": "staack",
"version": "1.0.6",
"version": "1.0.7",
"description": "A library to create type-safe opaque stacks",

@@ -23,3 +23,4 @@ "keywords": [

"import": "./dist/mod.mjs",
"require": "./dist/mod.js"
"require": "./dist/mod.js",
"types": "./dist/mod.d.ts"
}

@@ -34,3 +35,4 @@ },

"scripts": {
"build": "rimraf dist deno_dist && tsup --format cjs,esm src/mod.ts --dts src/mod.ts && denoify",
"build": "rimraf dist && tsup --format cjs,esm src/mod.ts --dts src/mod.ts",
"build:deno": "rimraf deno_dist && denoify",
"lint": "prettier . --check && eslint . && tsc --noEmit",

@@ -42,3 +44,4 @@ "lint:fix": "prettier . --write . && eslint . --fix",

"test:watch": "vitest --watch",
"typecheck": "tsc --noEmit"
"typecheck": "tsc",
"typecheck:watch": "tsc --watch"
},

@@ -50,5 +53,6 @@ "dependencies": {

"devDependencies": {
"@types/node": "^20.3.0",
"@typescript-eslint/eslint-plugin": "^5.59.9",
"@typescript-eslint/parser": "^5.59.9",
"bumpp": "^9.1.1",
"@vitest/coverage-v8": "^0.32.0",
"denoify": "^1.5.8",

@@ -62,24 +66,26 @@ "eslint": "^8.42.0",

"tsup": "^6.7.0",
"typescript": "^5.1.3"
"typescript": "^5.1.3",
"vitest": "^0.32.0"
},
"packageManager": "pnpm@8.6.1",
"engines": {
"node": ">=18"
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
},
"release-it": {
"hooks": {
"before:init": "pnpm test"
"before:init": [
"pnpm test",
"pnpm run build:deno"
]
},
"npm": {
"publish": false
"publish": true
},
"github": {
"release": true,
"web": true
"web": true,
"autoGenerate": true
}
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
}
}

@@ -47,7 +47,3 @@ # 🏯 Staack

with(...keys: Array<KeyProvider<any>>): ParamsStaack {
return Staack.applyKeys<ParamsStaack>(
this,
keys,
(internal) => new ParamsStaack(this.param, internal)
);
return Staack.applyKeys<ParamsStaack>(this, keys, (internal) => new ParamsStaack(this.param, internal));
}

@@ -54,0 +50,0 @@ }

Sorry, the diff of this file is not supported yet

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