package.json 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. {
  2. "name": "@yume-chan/struct",
  3. "version": "0.0.17",
  4. "description": "C-style structure serializer and deserializer.",
  5. "keywords": [
  6. "structure",
  7. "serialization",
  8. "deserialization",
  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/struct#readme",
  18. "repository": {
  19. "type": "git",
  20. "url": "git+https://github.com/yume-chan/ya-webadb.git",
  21. "directory": "packages/struct"
  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. "@yume-chan/dataview-bigint-polyfill": "workspace:^0.0.17",
  37. "tslib": "^2.4.1"
  38. },
  39. "devDependencies": {
  40. "@jest/globals": "^29.3.1",
  41. "@yume-chan/ts-package-builder": "workspace:^1.0.0",
  42. "cross-env": "^7.0.3",
  43. "jest": "^29.3.1",
  44. "ts-jest": "^29.0.3",
  45. "typescript": "^4.8.4"
  46. }
  47. }