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

@cardano-sdk/cip30

Package Overview
Dependencies
Maintainers
1
Versions
32
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@cardano-sdk/cip30 - npm Package Compare versions

Comparing version 0.2.0 to 0.3.0

dist/cjs/AuthenticatorApi/index.d.ts

33

package.json
{
"name": "@cardano-sdk/cip30",
"version": "0.2.0",
"version": "0.3.0",
"description": "TypeScript definitions for the dApp Connector standard CIP30",

@@ -8,3 +8,10 @@ "engines": {

},
"main": "dist/index.js",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"exports": {
".": {
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js"
}
},
"repository": "https://github.com/input-output-hk/cardano-js-sdk/packages/cip30",

@@ -17,8 +24,14 @@ "contributors": [

"scripts": {
"build": "tsc --build ./src",
"build:esm": "tsc -p src/tsconfig.json --outDir ./dist/esm --module es2020",
"build:cjs": "tsc --build src",
"build": "run-s build:cjs build:esm module-fixup",
"module-fixup": "shx cp ../../build/cjs-package.json ./dist/cjs/package.json && cp ../../build/esm-package.json ./dist/esm/package.json",
"tscNoEmit": "shx echo typescript --noEmit command not implemented yet",
"cleanup": "shx rm -rf dist node_modules",
"lint": "eslint --ignore-path ../../.eslintignore \"**/*.ts\"",
"lint:fix": "eslint --fix --ignore-path ../../.eslintignore \"**/*.ts\"",
"cleanup:dist": "shx rm -rf dist",
"cleanup:nm": "shx rm -rf node_modules",
"cleanup": "run-s cleanup:dist cleanup:nm",
"lint": "eslint -c ../../complete.eslintrc.js \"src/**/*.ts\" \"test/**/*.ts\"",
"lint:fix": "yarn lint --fix",
"test": "jest -c ./jest.config.js",
"test:build:verify": "tsc --build ./test",
"test:e2e": "shx echo 'test:e2e' command not implemented yet",

@@ -31,10 +44,10 @@ "coverage": "shx echo No coverage report for this package",

"@types/webextension-polyfill": "^0.8.0",
"jest-webextension-mock": "^3.7.19",
"mock-browser": "^0.92.14",
"shx": "^0.3.3",
"webextension-polyfill": "^0.8.0"
"shx": "^0.3.3"
},
"dependencies": {
"@cardano-ogmios/client": "4.1.0",
"ts-custom-error": "^3.2.0",
"ts-log": "^2.2.3"
"ts-log": "^2.2.3",
"webextension-polyfill": "^0.8.0"
},

@@ -41,0 +54,0 @@ "files": [

# Cardano JS SDK | CIP30
This package implements concepts from the draft specification being developed in [CIP-0030]. The
package defines TypeScript types and interfaces, as well as a class to implement allow list
persistence.
package defines TypeScript types and interfaces, as well as utilities to implement allow list
persistence and set up web extension messaging.
See [example web extension].
[example web extension]: ../web-extension/e2e/extension
[CIP-0030]: https://github.com/cardano-foundation/CIPs/pull/88
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