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

direct-vuex

Package Overview
Dependencies
Maintainers
1
Versions
67
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

direct-vuex - npm Package Compare versions

Comparing version 0.7.4 to 0.7.5

21

.vscode/settings.json
{
"editor.codeActionsOnSave": {
"source.fixAll": true,
"source.organizeImports": true
"[typescript]": {
"editor.codeActionsOnSave": {
"source.fixAll": true,
"source.organizeImports": true
},
"editor.defaultFormatter": "vscode.typescript-language-features",
"editor.formatOnSave": true
},
"editor.formatOnSave": true,
"editor.insertSpaces": true,
"editor.rulers": [
120
],
"editor.rulers": [120],
"editor.tabSize": 2,
"editor.wordWrap": "wordWrapColumn",
"editor.wordWrapColumn": 132,
"editor.wordWrap": "wordWrapColumn",
"files.encoding": "utf8",
"files.trimTrailingWhitespace": true,
"javascript.format.semicolons": "remove",
"search.useIgnoreFiles": true,
"tslint.configFile": "tslint.json",
"typescript.locale": "en",
"typescript.preferences.importModuleSpecifier": "relative",
"typescript.preferences.quoteStyle": "double"
}
}
{
"name": "direct-vuex",
"version": "0.7.4",
"version": "0.7.5",
"description": "Use and implement your Vuex store with TypeScript types. Compatible with the Vue 3 composition API.",

@@ -5,0 +5,0 @@ "author": "Paleo",

@@ -125,3 +125,3 @@ import { ActionContext, Store } from "vuex"

type ShowContent<T> =
T extends ((...args: any[]) => any) ? T :
T extends Function ? T :
T extends object ?

@@ -132,5 +132,5 @@ T extends infer O ? { [K in keyof O]: ShowContentDepth1<O[K]> } : never

type ShowContentDepth1<T> =
T extends ((...args: any[]) => any) ? T :
T extends Function ? T :
T extends object ?
T extends infer O ? { [K in keyof O]: O[K] } : never
: T
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