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

@sayari/trellis

Package Overview
Dependencies
Maintainers
4
Versions
47
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@sayari/trellis - npm Package Compare versions

Comparing version 0.7.0-rc.4 to 0.7.0-rc.5

main/index.js

56

package.json
{
"name": "@sayari/trellis",
"version": "0.7.0-rc.4",
"version": "0.7.0-rc.5",
"description": "High-performance network visualization library, rendering to WebGL as well as other targets",
"source": "src/index.ts",
"main": "./main.js",
"module": "./module.js",
"types": "./index.d.ts",
"author": "James Conkling <james.lane.conkling@gmail.com> jameslaneconkling.github.io",
"license": "ISC",
"scripts": {
"clean": "rm -rf dist && rm -rf .parcel-cache && mkdir dist",
"clean": "rm -rf dist && rm -rf .parcel-cache",
"format": "prettier . --write",

@@ -17,5 +15,6 @@ "test": "echo \"Error: no test specified\" && exit 1",

"perf": "parcel perf/index.html",
"copy": "mv main* module* index.d* dist/",
"copy": "cp package* README.md dist/",
"build:tsc": "tsc --project ./tsconfig.json",
"build": "npm run clean && parcel build && npm run copy && npm run build:tsc",
"build": "npm run clean && npm run build:tsc && parcel build",
"build:analyze": "npm run clean && parcel build --detailed-report --reporter @parcel/reporter-bundle-analyzer",
"examples:dev": "npm run clean && parcel examples/index.html",

@@ -25,4 +24,40 @@ "docs:dev": "npm run clean && parcel docs-src/index.html",

},
"author": "James Conkling <james.lane.conkling@gmail.com> jameslaneconkling.github.io",
"license": "ISC",
"targets": {
"main": {
"source": "src/index.ts",
"outputFormat": "commonjs",
"isLibrary": true
},
"module": {
"source": "src/index.ts",
"outputFormat": "esmodule",
"isLibrary": true
}
},
"exports": {
".": {
"import": "./module/index.js",
"require": "./main/index.js",
"types": "./src/index.d.ts"
},
"./react": {
"default": "./src/bindings/react/index.js",
"types": "./src/bindings/react/index.d.ts"
},
"./native": {
"default": "./src/bindings/native/index.js",
"types": "./src/bindings/native/index.d.ts"
},
"./webgl": {
"default": "./src/renderers/webgl/index.js",
"types": "./src/renderers/webgl/index.d.ts"
},
"./image": {
"default": "./src/renderers/image/index.js",
"types": "./src/renderers/image/index.d.ts"
}
},
"@parcel/resolver-default": {
"packageExports": true
},
"dependencies": {

@@ -39,2 +74,3 @@ "@pixi/unsafe-eval": "^6.5.5",

"@parcel/packager-ts": "^2.9.3",
"@parcel/reporter-bundle-analyzer": "^2.9.3",
"@parcel/transformer-typescript-tsc": "^2.9.3",

@@ -41,0 +77,0 @@ "@parcel/transformer-typescript-types": "^2.9.3",

4

README.md

@@ -69,3 +69,3 @@ # Trellis

cp package* README.md dist/
npm run copy

@@ -84,5 +84,5 @@ npm publish dist/ --tag next

cp package* README.md dist/
npm run copy
npm publish dist/
```
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