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

@openfin/cloud-interop-core-api

Package Overview
Dependencies
Maintainers
60
Versions
111
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@openfin/cloud-interop-core-api - npm Package Compare versions

Comparing version 0.0.1-alpha.9be9ebc to 0.0.1-alpha.9fa6b6f

bundle.d.ts

245

package.json
{
"name": "@openfin/cloud-interop-core-api",
"version": "0.0.1-alpha.9be9ebc",
"type": "module",
"description": "",
"files": [
"./dist/*"
],
"main": "./dist/index.cjs",
"browser": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"scripts": {
"build": "rimraf dist && rollup -c",
"build:watch": "rollup -c --watch",
"typecheck": "tsc --noEmit",
"test": "jest --coverage",
"lint": "eslint . --max-warnings 0",
"lint:fix": "eslint . --fix --max-warnings 0"
},
"author": "",
"license": "SEE LICENSE IN LICENSE.md",
"devDependencies": {
"@rollup/plugin-commonjs": "^28.0.1",
"@rollup/plugin-inject": "^5.0.5",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-typescript": "^11.1.6",
"@types/jest": "^29.5.14",
"@types/node": "^22.7.7",
"@typescript-eslint/eslint-plugin": "^7.5.0",
"@typescript-eslint/parser": "^7.15.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-check-file": "^2.8.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-unicorn": "^55.0.0",
"eslint-plugin-unused-imports": "^4.1.4",
"jest": "^29.7.0",
"prettier": "^3.3.3",
"rollup": "^4.9.6",
"ts-jest": "^29.2.5",
"typescript": "^5.6.3"
},
"dependencies": {
"@openfin/shared-utils": "file:../shared-utils",
"mqtt": "^5.3.1"
},
"eslintConfig": {
"env": {
"browser": true,
"node": true
},
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaVersion": "latest",
"project": true,
"sourceType": "module"
},
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/recommended",
"plugin:@typescript-eslint/strict",
"plugin:unicorn/recommended",
"plugin:prettier/recommended"
],
"plugins": [
"prettier",
"check-file",
"simple-import-sort",
"unused-imports"
],
"rules": {
"unused-imports/no-unused-imports": "warn",
"unicorn/prevent-abbreviations": [
"error",
{
"replacements": {
"props": false,
"prop": false,
"ref": false,
"args": false,
"arg": false,
"src": false,
"dev": false,
"str": false,
"req": false,
"res": false
}
}
],
"@typescript-eslint/no-non-null-assertion": "error",
"unicorn/no-nested-ternary": "off",
"unicorn/no-array-for-each": "off",
"unicorn/no-useless-undefined": "off",
"unicorn/no-null": "off",
"eqeqeq": [
"error",
"always"
],
"no-alert": "error",
"no-eval": "error",
"prettier/prettier": "warn",
"simple-import-sort/imports": [
"error",
{
"groups": [
[
"^react$"
],
[
"^react"
],
[
"^next"
],
[
"^zod"
],
[
"^@radix-ui/"
],
[
"^[^.]"
],
[
"@/components/ui/.*"
],
[
"@/components/.*"
],
[
"@/config/.*"
],
[
"@/lib/.*"
],
[
"^\\.\\.(?!/?$)",
"^\\.\\./?$"
],
[
"^\\./(?=.*/)(?!/?$)",
"^\\.(?!/?$)",
"^\\./?$"
],
[
"^.+\\.s?css$"
]
]
}
],
"check-file/no-index": "off",
"check-file/filename-naming-convention": [
"error",
{
"**/*.{jsx,tsx}": "KEBAB_CASE",
"**/*.{js,ts}": "KEBAB_CASE"
},
{
"ignoreMiddleExtensions": true
}
],
"check-file/filename-blocklist": [
"error",
{
"**/*.spec.js": "*.test.js",
"**/*.spec.jsx": "*.test.jsx",
"**/*.spec.ts": "*.test.ts",
"**/*.spec.tsx": "*.test.tsx"
}
],
"no-restricted-syntax": [
"error",
{
"selector": "TSEnumDeclaration",
"message": "Prefer string unions to enums."
}
],
"curly": [
"error",
"multi-line"
],
"@typescript-eslint/consistent-type-definitions": [
"error",
"type"
],
"@typescript-eslint/no-unused-vars": [
"warn",
{
"argsIgnorePattern": "^_",
"varsIgnorePattern": "^_"
}
],
"@typescript-eslint/no-explicit-any": "warn"
},
"ignorePatterns": [
"node_modules",
"out",
"build",
"dist",
"coverage",
"tests",
"rollup.config.mjs",
"examples"
]
},
"jest": {
"collectCoverage": true,
"collectCoverageFrom": [
"src/**/*.ts"
],
"coverageReporters": [
"lcov",
"text-summary"
],
"preset": "ts-jest",
"restoreMocks": true,
"setupFiles": [],
"testMatch": [
"**/tests/*.test.ts"
],
"testTimeout": 100000
},
"prettier": {
"printWidth": 160,
"semi": true,
"singleQuote": true,
"tabWidth": 4,
"trailingComma": "all"
}
"name": "@openfin/cloud-interop-core-api",
"version": "0.0.1-alpha.9fa6b6f",
"type": "module",
"description": "",
"main": "./index.cjs",
"browser": "./index.mjs",
"types": "./bundle.d.ts",
"author": "",
"license": "SEE LICENSE IN LICENSE.md",
"optionalDependencies": {
"@rollup/rollup-linux-x64-gnu": "*"
},
"dependencies": {
"mqtt": "^5.3.1",
"zod": "^3.24.1"
}
}
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