@lukso/lsp4-contracts
Version:
Package for the LSP4 Digital Asset Metadata standard
55 lines (54 loc) • 1.5 kB
JSON
{
"name": "@lukso/lsp4-contracts",
"version": "0.16.2",
"description": "Package for the LSP4 Digital Asset Metadata standard",
"license": "Apache-2.0",
"author": "",
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"typings": "./dist/index.d.ts",
"exports": {
".": {
"require": "./dist/index.cjs",
"import": "./dist/index.mjs",
"types": "./dist/index.d.ts"
},
"./artifacts/*": "./artifacts/*",
"./package.json": "./package.json"
},
"files": [
"contracts/**/*.sol",
"!contracts/Mocks/**/*.sol",
"artifacts/*.json",
"dist",
"types",
"!types/factories",
"./README.md"
],
"keywords": [
"LUKSO",
"LSP",
"Blockchain",
"Standards",
"Smart Contracts",
"Ethereum",
"EVM",
"Solidity"
],
"scripts": {
"build": "hardhat compile --show-stack-traces",
"build:js": "unbuild",
"build:types": "npx wagmi generate",
"clean": "hardhat clean && rm -Rf dist/ cache/ node_modules/ .turbo/ types/ typechain/ build/ artifacts/",
"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:coverage": "hardhat coverage",
"package": "hardhat prepare-package"
},
"dependencies": {
"@erc725/smart-contracts-v8": "npm:@erc725/smart-contracts@8.0.0",
"@lukso/lsp2-contracts": "~0.15.0"
}
}