|
| 1 | +{ |
| 2 | + "name": "@windingtree/contracts", |
| 3 | + "version": "0.0.0-semantic-release", |
| 4 | + "description": "The WindingTree market protocol smart contracts and utilities", |
| 5 | + "repository": "git@github.com:windingtree/contracts.git", |
| 6 | + "bugs": "https://github.com/windingtree/contracts/issues", |
| 7 | + "homepage": "https://github.com/windingtree/contracts#readme", |
| 8 | + "author": "Kostiantyn Smyrnov <kostysh@gmail.com>", |
| 9 | + "keywords": [ |
| 10 | + "windingtree", |
| 11 | + "market", |
| 12 | + "protocol", |
| 13 | + "solidity", |
| 14 | + "typescript", |
| 15 | + "contract", |
| 16 | + "smart contract" |
| 17 | + ], |
| 18 | + "contributors": [ |
| 19 | + "Kostiantyn Smyrnov <kostysh@gmail.com>" |
| 20 | + ], |
| 21 | + "license": "MIT", |
| 22 | + "private": false, |
| 23 | + "types": "./lib/src/index.d.ts", |
| 24 | + "main": "./lib/src/index.js", |
| 25 | + "files": [ |
| 26 | + "src", |
| 27 | + "lib", |
| 28 | + "artifacts", |
| 29 | + "typechain", |
| 30 | + "!**/*.tsbuildinfo", |
| 31 | + "!**/**.dbg.json" |
| 32 | + ], |
| 33 | + "typesVersions": { |
| 34 | + "*": { |
| 35 | + "*": [ |
| 36 | + "*", |
| 37 | + "lib/*", |
| 38 | + "lib/*/index" |
| 39 | + ] |
| 40 | + } |
| 41 | + }, |
| 42 | + "exports": { |
| 43 | + ".": { |
| 44 | + "types": "./lib/index.d.ts", |
| 45 | + "import": "./lib/index.js" |
| 46 | + }, |
| 47 | + "./types": { |
| 48 | + "types": "./lib/typechain/index.d.ts", |
| 49 | + "import": "./lib/typechain/index.js" |
| 50 | + } |
| 51 | + }, |
| 52 | + "release": { |
| 53 | + "branches": [ |
| 54 | + { |
| 55 | + "name": "main" |
| 56 | + }, |
| 57 | + { |
| 58 | + "name": "beta", |
| 59 | + "channel": "beta", |
| 60 | + "prerelease": true |
| 61 | + } |
| 62 | + ], |
| 63 | + "plugins": [ |
| 64 | + "@semantic-release/commit-analyzer", |
| 65 | + "@semantic-release/changelog", |
| 66 | + "@semantic-release/release-notes-generator", |
| 67 | + "@semantic-release/npm", |
| 68 | + "@semantic-release/github" |
| 69 | + ] |
| 70 | + }, |
| 71 | + "publishConfig": { |
| 72 | + "access": "public" |
| 73 | + }, |
| 74 | + "devDependencies": { |
| 75 | + "@types/node": "^20.1.5", |
| 76 | + "semantic-release": "^21.0.2", |
| 77 | + "semantic-release-cli": "^5.4.4", |
| 78 | + "@semantic-release/changelog": "^6.0.3", |
| 79 | + "@commitlint/config-conventional": "^17.6.3", |
| 80 | + "@commitlint/cli": "^17.6.3", |
| 81 | + "lint-staged": "^13.2.2", |
| 82 | + "eslint": "^8.40.0", |
| 83 | + "@typescript-eslint/eslint-plugin": "^5.59.5", |
| 84 | + "@typescript-eslint/parser": "^5.59.5", |
| 85 | + "prettier": "^2.8.8", |
| 86 | + "prettier-plugin-jsdoc": "^0.4.2", |
| 87 | + "ts-node": "^10.9.1", |
| 88 | + "typescript": "^5.0.4", |
| 89 | + "ethers": "^6.3.0", |
| 90 | + "typechain": "^8.1.1", |
| 91 | + "@typechain/ethers-v6": "^0.3.2" |
| 92 | + }, |
| 93 | + "scripts": { |
| 94 | + "build": "rm -rf ./lib && typechain --target=ethers-v6 --out-dir typechain ./artifacts/contracts/Config.sol/Config.json ./artifacts/contracts/EntitiesRegistry.sol/EntitiesRegistry.json ./artifacts/contracts/Market.sol/Market.json && tsc -p ./tsconfig.build.json", |
| 95 | + "lint": "eslint --ext .ts", |
| 96 | + "lint:fix": "eslint --ext .ts --fix && prettier --check !network --write ." |
| 97 | + } |
| 98 | +} |
0 commit comments