package.json 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. {
  2. "name": "@jsonjoy.com/json-pointer",
  3. "packageManager": "yarn@4.5.0",
  4. "publishConfig": {
  5. "access": "public"
  6. },
  7. "version": "1.0.2",
  8. "description": "High-performance JSON Pointer implementation",
  9. "author": {
  10. "name": "streamich",
  11. "url": "https://github.com/streamich"
  12. },
  13. "homepage": "https://github.com/jsonjoy-com/json-pointer",
  14. "repository": "jsonjoy-com/json-pointer",
  15. "funding": {
  16. "type": "github",
  17. "url": "https://github.com/sponsors/streamich"
  18. },
  19. "keywords": [
  20. "json-pointer",
  21. "json",
  22. "pointer",
  23. "jit",
  24. "selector",
  25. "pick"
  26. ],
  27. "engines": {
  28. "node": ">=10.0"
  29. },
  30. "main": "lib/index.js",
  31. "types": "lib/index.d.ts",
  32. "typings": "lib/index.d.ts",
  33. "files": [
  34. "LICENSE",
  35. "lib/"
  36. ],
  37. "license": "Apache-2.0",
  38. "scripts": {
  39. "format": "biome format ./src",
  40. "format:fix": "biome format --write ./src",
  41. "lint": "biome lint ./src",
  42. "lint:fix": "biome lint --apply ./src",
  43. "clean": "npx rimraf@6.0.1 lib typedocs coverage gh-pages yarn-error.log",
  44. "build": "tsc --project tsconfig.build.json --module commonjs --target es2020 --outDir lib",
  45. "test": "vitest ./src",
  46. "coverage": "vitest run --coverage",
  47. "typedoc": "npx typedoc@0.25.13 --tsconfig tsconfig.build.json",
  48. "build:pages": "npx rimraf@6.0.1 gh-pages && mkdir -p gh-pages && cp -r typedocs/* gh-pages && cp -r coverage gh-pages/coverage",
  49. "deploy:pages": "gh-pages -d gh-pages",
  50. "publish-coverage-and-typedocs": "yarn typedoc && yarn coverage && yarn build:pages && yarn deploy:pages"
  51. },
  52. "peerDependencies": {
  53. "tslib": "2"
  54. },
  55. "dependencies": {
  56. "@jsonjoy.com/codegen": "^1.0.0",
  57. "@jsonjoy.com/util": "^1.9.0"
  58. },
  59. "devDependencies": {
  60. "@biomejs/biome": "^1.9.3",
  61. "@types/benchmark": "^2.1.5",
  62. "@vitest/coverage-v8": "^2.1.2",
  63. "benchmark": "^2.1.4",
  64. "config-galore": "^1.0.0",
  65. "tslib": "^2.7.0",
  66. "typescript": "^5.6.2",
  67. "vitest": "^2.1.2"
  68. }
  69. }