{ "name": "@tableland/evm", "version": "0.0.0", "description": "Tableland Tables EVM contracts and client components", "engines": { "node": ">=18.0.0" }, "main": "typechain-types/index.js", "types": "typechain-types/index.d.ts", "files": [ "network.*", "hardhat.config.*", "contracts", "typechain-types/**/*.js?(.map)", "typechain-types/**/*.ts", "scripts" ], "exports": { ".": "./typechain-types/index.js", "./network": "./network.js", "./network.js": "./network.js", "./contracts/": "./contracts/", "./scripts/deploy.js": "./scripts/deploy.js" }, "scripts": { "build": "hardhat compile && npx tsc -p ./tsconfig.build.json", "clean": "hardhat clean && rm -rf artifacts && rm -rf typechain-types && rm -rf cache && rm -rf coverage && rm -f coverage.json && rm -f network.js* && rm -f network.d* && rm -f scripts/*.js* && rm -f scripts/*.d* && rm -f hardhat.config.js* && rm -f hardhat.config.d*", "up": "npm install && npx hardhat compile && npm run build && hardhat node", "test": "npm run test:e2e && npm run test:unit", "test:unit": "hardhat coverage --testfiles \"test/unit\" && istanbul check-coverage ./coverage.json --statements 100 --branches 100 --functions 100 --lines 100", "test:e2e": "npm run build && node --experimental-fetch ./node_modules/mocha/bin/mocha.js --exit test/integration", "test:gas": "REPORT_GAS=true hardhat test", "lint": "eslint '**/*.{js,ts}'", "lint:fix": "npm run lint -- --fix", "prettier": "prettier '**/*.{ts,json,sol,md}' --check", "prettier:fix": "npm run prettier -- --write", "format": "npm run prettier:fix && npm run lint:fix", "prepublishOnly": "npm run build" }, "publishConfig": { "access": "public" }, "repository": { "type": "git", "url": "git+https://github.com/tablelandnetwork/evm-tableland.git" }, "keywords": [ "tableland", "evm", "sql" ], "license": "MIT AND Apache-2.0", "bugs": { "url": "https://github.com/tablelandnetwork/evm-tableland/issues" }, "homepage": "https://github.com/tablelandnetwork/evm-tableland#readme", "devDependencies": { "@nomicfoundation/hardhat-chai-matchers": "^2.0.6", "@nomicfoundation/hardhat-ethers": "^3.0.6", "@nomicfoundation/hardhat-verify": "^2.0.5", "@openzeppelin/contracts-upgradeable": "4.9.6", "@openzeppelin/hardhat-upgrades": "^3.1.0", "@tableland/local": "^3.0.0-pre.1", "@tableland/sdk": "^7.0.0-pre.0", "@typechain/ethers-v6": "^0.5.1", "@typechain/hardhat": "^9.1.0", "@types/chai": "^4.3.4", "@types/chai-as-promised": "^7.1.5", "@types/mocha": "^10.0.1", "@types/node": "^18.15.0", "@typescript-eslint/eslint-plugin": "^5.54.1", "@typescript-eslint/parser": "^5.54.1", "chai": "^4.3.7", "chai-as-promised": "^7.1.1", "dotenv": "^16.0.3", "erc721a": "^4.2.3", "erc721a-upgradeable": "^4.2.3", "eslint": "^8.35.0", "eslint-config-prettier": "^8.7.0", "eslint-config-standard": "^17.0.0", "eslint-plugin-import": "^2.27.5", "eslint-plugin-n": "^15.6.1", "eslint-plugin-promise": "^6.1.1", "hardhat": "^2.22.2", "hardhat-contract-sizer": "^2.10.0", "hardhat-gas-reporter": "^2.1.1", "mocha": "^10.2.0", "prettier": "^3.0.3", "prettier-plugin-solidity": "^1.1.3", "solhint": "^4.5.4", "solidity-coverage": "^0.8.12", "ts-node": "^10.9.1", "typechain": "^8.3.2", "typescript": "^5.0.2" }, "dependencies": { "@openzeppelin/contracts": "4.9.6", "ethers": "^6.12.0" } }