package.json 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. {
  2. "name": "@binance-api/credential-manager",
  3. "version": "1.0.0",
  4. "description": "凭证管理模块 - 支持多平台账户管理、智能平台识别和统一签名接口",
  5. "main": "dist/index.js",
  6. "types": "dist/index.d.ts",
  7. "scripts": {
  8. "build": "tsc",
  9. "build:watch": "tsc --watch",
  10. "test": "jest",
  11. "test:watch": "jest --watch",
  12. "test:coverage": "jest --coverage",
  13. "test:contract": "jest tests/contract/",
  14. "test:integration": "jest tests/integration/",
  15. "test:unit": "jest tests/unit/",
  16. "lint": "eslint src/ tests/ --ext .ts",
  17. "lint:fix": "eslint src/ tests/ --ext .ts --fix",
  18. "format": "prettier --write \"src/**/*.ts\" \"tests/**/*.ts\"",
  19. "prepublishOnly": "npm run build",
  20. "clean": "rimraf dist/"
  21. },
  22. "keywords": [
  23. "credential",
  24. "management",
  25. "crypto",
  26. "signing",
  27. "pacifica",
  28. "aster",
  29. "binance",
  30. "ed25519",
  31. "multi-platform"
  32. ],
  33. "author": "Binance API Team",
  34. "license": "MIT",
  35. "files": [
  36. "dist/",
  37. "README.md",
  38. "LICENSE"
  39. ],
  40. "engines": {
  41. "node": ">=18.12.0"
  42. },
  43. "dependencies": {
  44. "@noble/ed25519": "^2.0.0",
  45. "@noble/hashes": "^1.3.0"
  46. },
  47. "devDependencies": {
  48. "@types/jest": "^29.5.0",
  49. "@types/node": "^18.15.0",
  50. "@typescript-eslint/eslint-plugin": "^5.57.0",
  51. "@typescript-eslint/parser": "^5.57.0",
  52. "eslint": "^8.37.0",
  53. "eslint-config-prettier": "^8.8.0",
  54. "eslint-plugin-prettier": "^4.2.1",
  55. "jest": "^29.5.0",
  56. "prettier": "^2.8.7",
  57. "rimraf": "^4.4.1",
  58. "ts-jest": "^29.1.0",
  59. "typescript": "^5.1.0"
  60. },
  61. "repository": {
  62. "type": "git",
  63. "url": "git+https://github.com/your-org/binance-api.git",
  64. "directory": "libs/credential-manager"
  65. },
  66. "bugs": {
  67. "url": "https://github.com/your-org/binance-api/issues"
  68. },
  69. "homepage": "https://github.com/your-org/binance-api/tree/main/libs/credential-manager#readme"
  70. }