{
"name": "@neo-devpack-solidity/types",
"version": "0.14.1",
"description": "Core types and interfaces for Neo DevPack for Solidity tooling",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"require": "./dist/index.js",
"import": "./dist/index.js",
"default": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist/**/*"
],
"scripts": {
"build": "tsc",
"typecheck": "tsc --noEmit",
"dev": "tsc --watch",
"clean": "rm -rf dist",
"test": "vitest run --passWithNoTests",
"test:watch": "vitest",
"lint": "eslint src --ext .ts"
},
"dependencies": {
"@ethersproject/bignumber": "^5.7.0",
"ethers": "^6.16.0"
},
"devDependencies": {
"@types/node": "^20.19.37",
"typescript": "^5.3.3",
"vitest": "^4.0.18"
},
"publishConfig": {
"access": "public"
}
}