Useful methods for file-related functions.
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.

50 lines
1.0 KiB

  1. {
  2. "version": "1.0.1",
  3. "license": "MIT",
  4. "main": "dist/index.js",
  5. "typings": "dist/index.d.ts",
  6. "files": [
  7. "dist",
  8. "src"
  9. ],
  10. "engines": {
  11. "node": ">=10"
  12. },
  13. "scripts": {
  14. "start": "tsdx watch",
  15. "build": "tsdx build",
  16. "test": "tsdx test",
  17. "lint": "tsdx lint",
  18. "prepare": "tsdx build"
  19. },
  20. "peerDependencies": {
  21. "crypto-js": "^4.0.0",
  22. "numeral": "^2.0.6"
  23. },
  24. "husky": {
  25. "hooks": {
  26. "pre-commit": "tsdx lint"
  27. }
  28. },
  29. "name": "@theoryofnekomata/file-commons",
  30. "author": "TheoryOfNekomata <allan.crisostomo@outlook.com>",
  31. "repository": {
  32. "type": "git",
  33. "url":"https://code.modal.sh/TheoryOfNekomata/file-commons.git"
  34. },
  35. "module": "dist/file-commons.esm.js",
  36. "devDependencies": {
  37. "@types/crypto-js": "^3.1.47",
  38. "@types/numeral": "^0.0.28",
  39. "fast-check": "^2.3.0",
  40. "husky": "^4.3.0",
  41. "tsdx": "^0.13.3",
  42. "tslib": "^2.0.1",
  43. "typescript": "^4.0.2"
  44. },
  45. "dependencies": {
  46. "crypto-js": "^4.0.0",
  47. "numeral": "^2.0.6"
  48. }
  49. }