提交学习笔记专用
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.

63 lines
1.5 KiB

  1. {
  2. "name": "is-what",
  3. "version": "5.5.0",
  4. "description": "JS type check (TypeScript supported) functions like `isPlainObject() isArray()` etc. A simple & small integration.",
  5. "type": "module",
  6. "sideEffects": false,
  7. "exports": {
  8. ".": "./dist/index.js",
  9. "./*": "./dist/*"
  10. },
  11. "engines": {
  12. "node": ">=18"
  13. },
  14. "scripts": {
  15. "test": "vitest run",
  16. "lint": "tsc --noEmit && oxlint",
  17. "build": "del-cli dist && tsc",
  18. "build:docs": "typedoc",
  19. "release": "npm run lint && npm run build && np --no-publish"
  20. },
  21. "devDependencies": {
  22. "@cycraft/eslint": "^0.4.4",
  23. "@cycraft/tsconfig": "^0.1.2",
  24. "del-cli": "^7.0.0",
  25. "np": "^10.2.0",
  26. "oxlint": "^1.16.0",
  27. "typedoc": "^0.28.13",
  28. "vitest": "^3.2.4"
  29. },
  30. "files": [
  31. "dist"
  32. ],
  33. "keywords": [
  34. "javascript",
  35. "typescript",
  36. "typechecker",
  37. "check-type",
  38. "javascript-type",
  39. "primitive-types",
  40. "plain-object",
  41. "plain-objects",
  42. "class-instance",
  43. "class-identifier",
  44. "type-checking",
  45. "type-checker",
  46. "type-check",
  47. "define-type",
  48. "get-type",
  49. "what-type",
  50. "is-object",
  51. "is-plain-obj",
  52. "is-plain-object"
  53. ],
  54. "author": "Luca Ban - Mesqueeb (https://cycraft.co)",
  55. "funding": "https://github.com/sponsors/mesqueeb",
  56. "license": "MIT",
  57. "repository": {
  58. "type": "git",
  59. "url": "https://github.com/mesqueeb/is-what.git"
  60. },
  61. "homepage": "https://github.com/mesqueeb/is-what#readme",
  62. "bugs": "https://github.com/mesqueeb/is-what/issues"
  63. }