package.json 646 B

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