@lukso/lsp17contractextension-contracts
Version:
Package for the LSP17 Contract Extension standard
79 lines (78 loc) • 2.19 kB
JSON
{
"name": "@lukso/lsp17contractextension-contracts",
"version": "0.17.2",
"description": "Package for the LSP17 Contract Extension standard",
"license": "Apache-2.0",
"author": "",
"repository": {
"type": "git",
"url": "https://github.com/lukso-network/lsp-smart-contracts.git",
"directory": "packages/lsp17contractextension-contracts"
},
"type": "module",
"keywords": [
"LUKSO",
"LSP",
"Blockchain",
"Standards",
"Smart Contracts",
"Ethereum",
"EVM",
"Solidity"
],
"files": [
"contracts/**/*.sol",
"!contracts/Mocks/**/*.sol",
"artifacts/*.json",
"dist",
"./README.md"
],
"main": "./dist/constants.cjs",
"module": "./dist/constants.mjs",
"typings": "./dist/constants.d.ts",
"exports": {
".": {
"types": "./dist/constants.d.ts",
"require": "./dist/constants.cjs",
"import": "./dist/constants.mjs"
},
"./constants.js": {
"types": "./dist/constants.d.ts",
"require": "./dist/constants.cjs",
"import": "./dist/constants.mjs"
},
"./constants": {
"types": "./dist/constants.d.ts",
"require": "./dist/constants.cjs",
"import": "./dist/constants.mjs"
},
"./abi": {
"types": "./dist/abi.d.ts",
"require": "./dist/abi.cjs",
"import": "./dist/abi.mjs"
},
"./contracts/*": "./contracts/*",
"./artifacts/*": "./artifacts/*",
"./dist/*": "./dist/*",
"./package.json": "./package.json"
},
"scripts": {
"build": "hardhat compile --show-stack-traces",
"build:js": "unbuild",
"build:types": "wagmi generate",
"clean": "rm -Rf dist/ cache/ node_modules/ .turbo/ types/ build/ artifacts/ abi.ts",
"format": "prettier --write .",
"lint": "eslint . --ext .ts,.js",
"lint:solidity": "solhint 'contracts/**/*.sol' && prettier --check 'contracts/**/*.sol'",
"build:package": "hardhat prepare-package"
},
"dependencies": {
"@openzeppelin/contracts": "^4.9.6"
},
"devDependencies": {
"@lukso/hardhat-packager-v3": "*",
"@nomicfoundation/hardhat-toolbox-mocha-ethers": "^3.0.0",
"eslint-config-custom": "*",
"hardhat": "^3.1.2"
}
}