haveno-ts/package.json

58 lines
1.7 KiB
JSON
Raw Normal View History

{
"name": "haveno-ts",
2022-09-24 08:47:56 -04:00
"version": "0.0.7",
"description": "Haveno TypeScript interface",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": ["dist/**/*"],
"scripts": {
"prepare": "scripts/build_protobuf.sh",
"pretest": "scripts/build_protobuf.sh",
"build": "./scripts/build_dist.sh",
"test": "jest",
2022-05-01 14:12:28 -04:00
"eslint": "eslint .",
2022-05-01 13:30:11 -04:00
"eslintfix": "eslint src/* --fix",
"typedoc": "typedoc ./src/index.ts --entryPointStrategy expand src/ --exclude **/*.test.ts --excludePrivate"
},
"jest": {
"testPathIgnorePatterns": ["<rootDir>/dist/", "/node_modules/"]
},
"repository": {
"type": "git",
"url": "git+https://github.com/haveno-dex/haveno-ts.git"
},
"keywords": [],
"author": "",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/haveno-dex/haveno-ts/issues"
},
"homepage": "https://github.com/haveno-dex/haveno-ts#readme",
"dependencies": {
"@types/node": "^17.0.30",
"console": "^0.7.2",
"google-protobuf": "^3.0.0",
"grpc-web": "^1.2.1"
},
"devDependencies": {
"@babel/core": "^7.17.10",
"@babel/preset-env": "^7.17.10",
"@babel/preset-typescript": "^7.16.7",
"@types/jest": "^27.4.1",
2022-05-01 13:30:11 -04:00
"@typescript-eslint/eslint-plugin": "5.12.1",
"@typescript-eslint/parser": "^5.19.0",
"babel-jest": "^28.0.3",
2022-05-01 13:30:11 -04:00
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-typescript": "^2.7.1",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.5.1",
"jest": "^26.6.0",
2022-08-29 08:25:35 -04:00
"monero-javascript": "^0.7.4",
2022-05-01 14:12:28 -04:00
"typedoc": "^0.22.15",
"typedoc-plugin-missing-exports": "^0.22.6",
"typedoc-plugin-rename-defaults": "^0.5.1",
"typescript": "^4.6.4"
}
}