@tangle-js/anchors
Version:
Anchoring messages to the Tangle. Powered by IOTA Streams
95 lines (94 loc) • 3.1 kB
JSON
{
"name": "@tangle-js/anchors",
"version": "0.9.3",
"description": "Anchoring messages to the Tangle. Powered by IOTA Streams",
"type": "module",
"scripts": {
"build-clean": "rimraf ./es/* ./typings/*",
"dist-clean": "rimraf ./dist/*",
"build-compile": "tsc",
"build-watch": "tsc --watch",
"build-lint": "eslint src --ext .ts",
"build": "npm-run-all build-clean build-compile build-lint",
"test-lint": "eslint test --ext .ts",
"test-run": "jest --testTimeout=120000 --verbose --coverage=false",
"test": "run-s -c test-lint test-run",
"package-esm": "esm-modules ./es ./dist/esm",
"package-umd": "rollup --config rollup.config.js",
"package": "run-s dist-clean package-umd package-esm package-web",
"package-web": "webpack --mode=production",
"dist": "run-s build test package"
},
"repository": {
"type": "git",
"url": "https://github.com/iotaledger/tangle.js.git",
"directory": "libs/anchors"
},
"keywords": [
"iota",
"chrysalis",
"streams",
"anchor",
"channels"
],
"engines": {
"node": ">=16",
"npm": ">=7"
},
"author": "Jose M. Cantera",
"license": "Apache 2.0",
"bugs": {
"url": "https://github.com/iotaledger/tangle.js.git/issues"
},
"homepage": "https://github.com/iotaledger/tangle.js.git/anchors/README.md",
"dependencies": {
"@iota/iota.js": "^1.6.3",
"@tangle.js/streams-wasm": "1.2.1-beta1",
"buffer": "^6.0.3",
"crypto-browserify": "^3.12.0",
"node-fetch": "^2.6.1",
"stream-browserify": "^3.0.0"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^19.0.0",
"@rollup/plugin-node-resolve": "^13.0.0",
"@rollup/plugin-replace": "^2.4.2",
"rollup-plugin-copy": "^3.4.0",
"@types/jest": "^27.4.1",
"@types/node": "^17.0.31",
"@types/node-fetch": "^2.5.10",
"@typescript-eslint/eslint-plugin": "^5.23.0",
"@typescript-eslint/parser": "^5.13.0",
"copy-webpack-plugin": "^7.0.0",
"eslint": "^8.15.0",
"eslint-plugin-header": "^3.1.1",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsdoc": "^37.9.7",
"eslint-plugin-unicorn": "^41.0.0",
"jest": "^28.1.0",
"npm-run-all": "^4.1.5",
"rimraf": "^3.0.2",
"rollup": "^2.50.1",
"rollup-plugin-terser": "^7.0.2",
"ts-jest": "^28.0.2",
"ts-loader": "^9.3.0",
"ts-node": "^10.7.0",
"typescript": "^4.6.2",
"webpack": "^5.72.0",
"webpack-cli": "^4.9.2",
"buffer": "^6.0.3",
"@tangle-js/esm-modules": "0.0.1"
},
"exports": {
".": {
"import": "./dist/esm/index.mjs",
"require": "./dist/cjs/index.cjs"
},
"./package.json": "./package.json"
},
"files": [
"dist",
"typings"
],
"typings": "typings/index.d.ts"
}