package.json 640 B

1234567891011121314151617181920212223242526272829
  1. {
  2. "name": "@dage/service",
  3. "version": "1.0.5",
  4. "description": "接口请求工具",
  5. "module": "dist/index.js",
  6. "main": "dist/index.js",
  7. "typings": "dist/index.d.ts",
  8. "files": [
  9. "dist"
  10. ],
  11. "keywords": [],
  12. "author": "",
  13. "license": "MIT",
  14. "devDependencies": {
  15. "@babel/core": "^7.22.10",
  16. "@babel/preset-env": "^7.22.10",
  17. "@babel/preset-typescript": "^7.22.5",
  18. "jest": "^29.6.3"
  19. },
  20. "dependencies": {
  21. "@dage/utils": "^1.1.1"
  22. },
  23. "scripts": {
  24. "start": "tsc -b tsconfig.build.json --watch",
  25. "prebuild": "rimraf dist",
  26. "build": "tsc -b tsconfig.build.json",
  27. "test": "jest"
  28. }
  29. }