Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@medplum/fhirpath

Package Overview
Dependencies
Maintainers
1
Versions
13
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@medplum/fhirpath - npm Package Compare versions

Comparing version 0.3.0 to 0.4.0

dist/cjs/index.js

18

package.json
{
"name": "@medplum/fhirpath",
"version": "0.3.0",
"version": "0.4.0",
"description": "Medplum FHIRPath Library",

@@ -15,11 +15,17 @@ "author": "Medplum <hello@medplum.com>",

"clean": "rimraf dist",
"build": "npm run clean && tsc",
"build": "npm run clean && tsc && npm run rollup",
"rollup": "rollup --config rollup.config.js",
"test": "jest"
},
"devDependencies": {
"@medplum/definitions": "0.3.0",
"@medplum/fhirtypes": "0.3.0"
"@medplum/definitions": "0.4.0",
"@medplum/fhirtypes": "0.4.0"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"exports": {
"require": "./dist/cjs/index.js",
"import": "./dist/esm/index.js"
},
"types": "dist/types/index.d.ts",
"sideEffects": false,

@@ -26,0 +32,0 @@ "keywords": [

@@ -15,3 +15,3 @@ # Medplum FHIRPath Library

import { Patient } from '@medplum/fhirtypes';
import { parseFhirPath } from '@medplum/fhirpath';
import { evalFhirPath } from '@medplum/fhirpath';

@@ -29,3 +29,3 @@ const patient: Patient = {

console.log(parseFhirPath('birthDate').eval(patient));
console.log(evalFhirPath('birthDate', patient));
```

@@ -32,0 +32,0 @@

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