package.json 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. {
  2. "name": "@yume-chan/dataview-bigint-polyfill",
  3. "version": "0.0.17",
  4. "description": "Polyfill for `DataView#getBigInt64`, `DataView#getBigUint64`, `DataView#setBigInt64` and `DataView#setBigUint64`",
  5. "keywords": [
  6. "polyfill",
  7. "dataview",
  8. "getBigInt64",
  9. "getBigUint64",
  10. "setBigInt64",
  11. "setBigUint64"
  12. ],
  13. "license": "MIT",
  14. "author": {
  15. "name": "Simon Chan",
  16. "email": "cnsimonchan@live.com",
  17. "url": "https://chensi.moe/blog"
  18. },
  19. "homepage": "https://github.com/yume-chan/ya-webadb/tree/main/libraries/dataview-bigint-polyfill#readme",
  20. "repository": {
  21. "type": "git",
  22. "url": "git+https://github.com/yume-chan/ya-webadb.git",
  23. "directory": "libraries/dataview-bigint-polyfill"
  24. },
  25. "bugs": {
  26. "url": "https://github.com/yume-chan/ya-webadb/issues"
  27. },
  28. "type": "module",
  29. "main": "esm/index.js",
  30. "types": "esm/index.d.ts",
  31. "scripts": {
  32. "build": "build-ts-package",
  33. "build:watch": "build-ts-package --incremental",
  34. "//test": "jest --coverage",
  35. "prepublishOnly": "npm run build"
  36. },
  37. "dependencies": {
  38. "tslib": "^2.4.1"
  39. },
  40. "devDependencies": {
  41. "@yume-chan/ts-package-builder": "workspace:^1.0.0",
  42. "jest": "^29.3.1",
  43. "typescript": "^4.8.4"
  44. }
  45. }