UNPKG

@harmoniclabs/plu-ts

Version:

An embedded DSL for Cardano smart contracts creation coupled with a library for Cardano transactions, all in Typescript

90 lines (89 loc) 3.19 kB
{ "name": "@harmoniclabs/plu-ts", "version": "0.9.0", "description": "An embedded DSL for Cardano smart contracts creation coupled with a library for Cardano transactions, all in Typescript", "main": "./dist/index.js", "types": "./dist/index.d.ts", "browser": { "worker_threads": false, "node:fs": false, "fs": false }, "type": "commonjs", "files": [ "dist" ], "scripts": { "test": "jest", "test:debug": "node --nolazy --inspect-brk ./node_modules/jest/bin/jest.js --runInBand --colors --verbose", "clear-jest": "jest --clearCache", "test-watch": "jest --watchman", "test-coverage": "jest --coverage", "build": "rm -rf ./dist && tsc --project ./tsconfig.json && tsc-alias -p ./tsconfig.json", "build:light": "tsc --project ./tsconfig.json && tsc-alias -p ./tsconfig.json", "buidl": "npm run build", "ci": "npm i && npm run test && npm run build", "start": "npm-run-all --parallel build:watch run:watch", "pub": "npm run ci && npm pub", "test:onchain": "cd ./packages/onchain && npm run test", "build:onchain": "cd ./packages/onchain && npm run build", "buidl:onchain": "cd ./packages/onchain && npm run buidl", "ci:onchain": "cd ./packages/onchain && npm run ci", "pub:onchain": "cd ./packages/onchain && npm run ci && npm pub", "test:offchain": "cd ./packages/offchain && npm run test", "build:offchain": "cd ./packages/offchain && npm run build", "buidl:offchain": "cd ./packages/offchain && npm run buidl", "ci:offchain": "cd ./packages/offchain && npm run ci", "pub:offchain": "cd ./packages/offchain && npm run ci && npm pub" }, "publishConfig": { "registry": "https://registry.npmjs.org" }, "keywords": [ "cardano", "plutus", "smart contracts", "transaction", "blockchain", "dApp" ], "author": "Michele Nuzzi", "license": "Apache-2.0", "repository": { "type": "git", "url": "git+https://github.com/HarmonicLabs/plu-ts.git" }, "bugs": { "url": "https://github.com/HarmonicLabs/plu-ts/issues" }, "homepage": "https://github.com/HarmonicLabs/plu-ts#readme", "dependencies": { "@harmoniclabs/bigint-utils": "^1.0.0", "@harmoniclabs/bip32_ed25519": "^0.1.2", "@harmoniclabs/bytestring": "^1.0.0", "@harmoniclabs/cardano-costmodels-ts": "^1.3.0", "@harmoniclabs/cardano-ledger-ts": "^0.3.1", "@harmoniclabs/cbor": "^1.5.0", "@harmoniclabs/crypto": "^0.2.5", "@harmoniclabs/obj-utils": "^1.0.0", "@harmoniclabs/pair": "^1.0.0", "@harmoniclabs/plu-ts-offchain": "0.2.0", "@harmoniclabs/plu-ts-onchain": "^0.4.0", "@harmoniclabs/plutus-data": "^1.2.4", "@harmoniclabs/plutus-machine": "^2.1.0", "@harmoniclabs/uint8array-utils": "^1.0.3", "@harmoniclabs/uplc": "^1.4.0" }, "devDependencies": { "@babel/preset-env": "^7.18.6", "@babel/preset-typescript": "^7.18.6", "@types/blake2": "^4.0.1", "@types/jest": "^28.1.4", "@types/node": "^18.14.6", "jest": "^29.4.3", "jest-environment-jsdom": "^29.4.3", "tsc-alias": "^1.7.1", "typescript": "^4.6.3" }, "funding": "https://github.com/sponsors/HarmonicLabs" }