版博士V2.0程序
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

53 lines
1.3 KiB

  1. {
  2. "name": "@antfu/install-pkg",
  3. "version": "0.1.1",
  4. "packageManager": "pnpm@7.12.0",
  5. "description": "Install package programmatically.",
  6. "author": "Anthony Fu <anthonyfu117@hotmail.com>",
  7. "license": "MIT",
  8. "funding": "https://github.com/sponsors/antfu",
  9. "homepage": "https://github.com/antfu/install-pkg#readme",
  10. "repository": {
  11. "type": "git",
  12. "url": "git+https://github.com/antfu/install-pkg.git"
  13. },
  14. "bugs": {
  15. "url": "https://github.com/antfu/install-pkg/issues"
  16. },
  17. "keywords": [],
  18. "sideEffects": false,
  19. "exports": {
  20. ".": {
  21. "types": "./dist/index.d.ts",
  22. "require": "./dist/index.js",
  23. "import": "./dist/index.mjs"
  24. }
  25. },
  26. "main": "dist/index.js",
  27. "module": "dist/index.mjs",
  28. "types": "dist/index.d.ts",
  29. "files": [
  30. "dist"
  31. ],
  32. "dependencies": {
  33. "execa": "^5.1.1",
  34. "find-up": "^5.0.0"
  35. },
  36. "devDependencies": {
  37. "@antfu/eslint-config": "^0.27.0",
  38. "@antfu/ni": "^0.18.0",
  39. "@types/node": "^16.11.59",
  40. "bumpp": "^8.2.1",
  41. "eslint": "^8.23.1",
  42. "esno": "^0.16.3",
  43. "tsup": "^6.2.3",
  44. "typescript": "^4.8.3"
  45. },
  46. "scripts": {
  47. "dev": "nr build --watch",
  48. "start": "esno src/index.ts",
  49. "build": "tsup src/index.ts --format cjs,esm --dts --no-splitting",
  50. "release": "bumpp --commit --push --tag && pnpm publish",
  51. "lint": "eslint ."
  52. }
  53. }