New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

@sasse/tss-js

Package Overview
Dependencies
Maintainers
0
Versions
15
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install
Package was removed
Sorry, it seems this package was removed from the registry

@sasse/tss-js

This project includes a widget component library derived from the semantic lookup service SemLookP. The Terminology Service is a repository for biomedical resources that aims to provide a single point of access to the latest ontology and terminology versi

latest
Source
npmnpm
Version
1.0.34
Version published
Maintainers
0
Created
Source

Developer Information

If you are locally developing this package, here is some required information to understand the setup.

Why patch-package and the prepare script?

@elastic/eui uses dynamically-computed import paths, our bundler vite can only handle static import paths. This means that we need to patch the EUI package to use statically-analyzable import paths. We do this using the patch-package package.

Dynamically-computed vs Statically-analyzable import paths
// This is what we want
tokenHistogram: () => import('./assets/tokenHistogram.js')
// This is what eui does
import(
  './assets/' + typeToPathMap[iconType]
).then(...)
Details on `patch-package` setup

patch-package stores the changes to apply in the ./patches directory. The prepare script in package.json runs patch-package to apply the patches to the EUI package. This is run automatically when you install dependencies, so you don't need to worry about it.

Should you need to make changes to the EUI package, you can do so in the node_modules/@elastic/eui directory. After making your changes, run npx patch-package @elastic/eui to create a new patch file in the patches directory. This will ensure that your changes are applied when you install dependencies in the future.

⚠️ IF YOU DO THIS MAKE SURE TO APPLY THE SAME CHANGES IN THE ../react PACKAGE.

After building the package to dist (npm run build), you MUST NOT find any references to "./assets/" + in the dist folder. If you do, it means that the patch was not applied correctly or something else went wrong.

FAQs

Package last updated on 05 Aug 2025

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts