haveno-ts/package.json

57 lines
1.7 KiB
JSON
Raw Normal View History

{
"name": "haveno-ts",
2023-08-02 09:56:28 -04:00
"version": "0.0.13",
"description": "Haveno TypeScript interface",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": ["dist/**/*"],
"scripts": {
"prepare": "scripts/build_protobuf.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": {
2023-02-27 10:22:52 -05:00
"testPathIgnorePatterns": ["<rootDir>/dist/", "/node_modules/"],
"globals": { "window": {} }
},
"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": {
2023-02-27 10:22:52 -05:00
"@types/node": "^18.14.2",
"console": "^0.7.2",
2023-02-27 10:22:52 -05:00
"google-protobuf": "^3.20.3",
"grpc-web": "^1.4.2"
},
"devDependencies": {
2023-02-27 10:22:52 -05:00
"@babel/core": "^7.21.0",
"@babel/preset-env": "^7.20.2",
"@babel/preset-typescript": "^7.21.0",
"@types/jest": "^29.4.0",
"@typescript-eslint/eslint-plugin": "5.53.0",
"@typescript-eslint/parser": "^5.53.0",
"babel-jest": "^29.4.3",
"eslint": "^8.35.0",
"eslint-config-prettier": "^8.6.0",
"eslint-import-resolver-typescript": "^3.5.3",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx-a11y": "^6.7.1",
"jest": "^26.6.0",
2023-07-25 09:14:04 -04:00
"monero-javascript": "^0.8.0",
2023-02-27 10:22:52 -05:00
"typedoc": "^0.23.26",
"typedoc-plugin-missing-exports": "^1.0.0",
"typedoc-plugin-rename-defaults": "^0.6.4",
"typescript": "^4.9.5"
}
}