UNPKG

@helios-lang/era

Version:
43 lines 1.17 kB
{ "name": "@helios-lang/era", "version": "0.1.5", "description": "\"Conway\"", "type": "module", "main": "src/index.js", "types": "types/index.d.ts", "repository": { "type": "git", "url": "git+https://github.com/HeliosLang/era.git" }, "keywords": [ "Cardano", "blockchain", "Conway", "Babbage" ], "author": "Christian Schmitz", "license": "BSD-3-Clause", "bugs": { "url": "https://github.com/HeliosLang/era/issues" }, "homepage": "https://github.com/HeliosLang/era#readme", "devDependencies": { "prettier": "^3.3.3", "typescript": "^5.5.4" }, "prettier": { "trailingComma": "none", "tabWidth": 4, "semi": false, "singleQuote": false }, "scripts": { "build": "pnpm run prettify && pnpm run build:types && pnpm run test:suite", "build:types": "tsc -p jsconfig.json --noEmit false --emitDeclarationOnly", "prettify": "prettier . --write", "test": "pnpm run test:pretty && pnpm run test:types && pnpm run test:suite", "test:pretty": "prettier . --check", "test:suite": "node --test --experimental-test-coverage", "test:types": "pnpm run build:types" } }