UNPKG

@lukso/lsp2-contracts

Version:

Package for the LSP2 ERC725Y JSON Schema standard

53 lines (52 loc) 1.45 kB
{ "name": "@lukso/lsp2-contracts", "version": "0.15.4", "description": "Package for the LSP2 ERC725Y JSON Schema standard", "license": "Apache-2.0", "author": "", "main": "./dist/index.cjs", "module": "./dist/index.mjs", "typings": "./dist/index.d.ts", "exports": { ".": { "types": "./dist/index.d.ts", "require": "./dist/index.cjs", "import": "./dist/index.mjs" }, "./artifacts/*": "./artifacts/*", "./package.json": "./package.json" }, "files": [ "contracts/**/*.sol", "!contracts/Mocks/**/*.sol", "artifacts/*.json", "dist", "./README.md" ], "keywords": [ "LUKSO", "LSP", "Blockchain", "Standards", "Smart Contracts", "Ethereum", "EVM", "Solidity" ], "scripts": { "build": "hardhat compile --show-stack-traces", "build:foundry": "forge build", "build:js": "unbuild", "clean": "hardhat clean && rm -Rf dist/ cache/ node_modules/ .turbo/ types/ typechain/ build/ artifacts/ abi.ts", "format": "prettier --write .", "lint": "eslint . --ext .ts,.js", "lint:solidity": "solhint 'contracts/**/*.sol' && prettier --check 'contracts/**/*.sol'", "test": "hardhat test --no-compile tests/*.test.ts", "test:foundry": "FOUNDRY_PROFILE=lsp2 forge test -vvvv", "test:coverage": "hardhat coverage" }, "dependencies": { "@erc725/smart-contracts": "^7.0.0", "@openzeppelin/contracts": "^4.9.3" } }