版博士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.
 
 
 
 

68 regels
1.9 KiB

  1. {
  2. "name": "native-dash",
  3. "version": "1.25.0",
  4. "description": "a replacement of lodash functions that are exported in both CJS and ES but where there are zero dependencies ... just modern JS code.",
  5. "license": "MIT",
  6. "author": "Ken Snyder <ken@ken.net>",
  7. "repository": {
  8. "type": "git",
  9. "url": "git+https://github.com/yankeeinlondon/native-dash"
  10. },
  11. "sideEffects": false,
  12. "type": "module",
  13. "module": "./dist/index.js",
  14. "typings": "./dist/index.d.ts",
  15. "exports": {
  16. ".": {
  17. "import": "./dist/index.js",
  18. "default": "./dist/index.js",
  19. "types": "./dist/index.d.ts"
  20. }
  21. },
  22. "files": [
  23. "dist"
  24. ],
  25. "scripts": {
  26. "build": "tsup src/index.ts --dts --format=esm --clean",
  27. "test": "vitest",
  28. "test:ci": "vitest run",
  29. "watch": "run-p watch:*",
  30. "watch:bundle": "npx tsup src/index.ts --dts --format=esm",
  31. "lint": "run-p lint:*",
  32. "lint:src": "eslint src/**/*.ts --fix",
  33. "lint:test": "eslint tests/**/*.ts --fix",
  34. "lint:tsc": "tsc --noEmit",
  35. "audit:fix": "pnpm audit --fix",
  36. "release": "run-s lint release:latest test:ci audit:fix release:bump",
  37. "release:latest": "pnpm install",
  38. "release:bump": "bumpp",
  39. "prepublishOnly": "npm run build"
  40. },
  41. "dependencies": {
  42. "brilliant-errors": "^0.7.3",
  43. "inferred-types": "^0.37.6"
  44. },
  45. "devDependencies": {
  46. "@type-challenges/utils": "^0.1.1",
  47. "@types/node": "16",
  48. "@typescript-eslint/eslint-plugin": "^5.46.1",
  49. "@typescript-eslint/parser": "^5.46.1",
  50. "bumpp": "^8.2.1",
  51. "eslint": "^8.29.0",
  52. "eslint-config-prettier": "^8.5.0",
  53. "eslint-plugin-import": "^2.26.0",
  54. "eslint-plugin-prettier": "^4.2.1",
  55. "eslint-plugin-promise": "^6.1.1",
  56. "eslint-plugin-unicorn": "^45.0.2",
  57. "node": "^16.18.1",
  58. "npm-run-all": "^4.1.5",
  59. "pathe": "^1.0.0",
  60. "prettier": "^2.8.1",
  61. "tsup": "^6.5.0",
  62. "typescript": "^4.9.4",
  63. "vite": "^4.0.1",
  64. "vitest": "^0.25.7",
  65. "watchlist": "^0.3.1"
  66. }
  67. }