package.json 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. {
  2. "name": "@yume-chan/b-tree",
  3. "version": "0.0.16",
  4. "description": "A B-tree implementation in TypeScript",
  5. "keywords": [
  6. "data-structure",
  7. "tree",
  8. "b-tree",
  9. "typescript"
  10. ],
  11. "license": "MIT",
  12. "author": {
  13. "name": "Simon Chan",
  14. "email": "cnsimonchan@live.com",
  15. "url": "https://chensi.moe/blog"
  16. },
  17. "homepage": "https://github.com/yume-chan/ya-webadb/tree/main/packages/b-tree#readme",
  18. "repository": {
  19. "type": "git",
  20. "url": "git+https://github.com/yume-chan/ya-webadb.git",
  21. "directory": "packages/b-tree"
  22. },
  23. "bugs": {
  24. "url": "https://github.com/yume-chan/ya-webadb/issues"
  25. },
  26. "type": "module",
  27. "main": "esm/index.js",
  28. "types": "esm/index.d.ts",
  29. "scripts": {
  30. "build": "tsc -b tsconfig.build.json",
  31. "build:watch": "tsc -b tsconfig.build.json",
  32. "test": "cross-env NODE_OPTIONS=--experimental-vm-modules jest --coverage",
  33. "prepublishOnly": "npm run build"
  34. },
  35. "dependencies": {
  36. "tslib": "^2.4.1"
  37. },
  38. "devDependencies": {
  39. "@jest/globals": "^29.3.1",
  40. "@yume-chan/ts-package-builder": "workspace:^1.0.0",
  41. "cross-env": "^7.0.3",
  42. "jest": "^29.3.1",
  43. "ts-jest": "^29.0.3",
  44. "typescript": "^4.8.4"
  45. }
  46. }