package.json 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. {
  2. "name": "@jsonjoy.com/json-pointer",
  3. "packageManager": "yarn@4.5.0",
  4. "publishConfig": {
  5. "access": "public"
  6. },
  7. "version": "1.0.1",
  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/util": "^1.3.0"
  57. },
  58. "devDependencies": {
  59. "@biomejs/biome": "^1.9.3",
  60. "@types/benchmark": "^2.1.5",
  61. "@vitest/coverage-v8": "^2.1.2",
  62. "benchmark": "^2.1.4",
  63. "config-galore": "^1.0.0",
  64. "tslib": "^2.7.0",
  65. "typescript": "^5.6.2",
  66. "vitest": "^2.1.2"
  67. }
  68. }