web 3d图形渲染器
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

30 lines
764 B

  1. {
  2. "name": "worker-rpc",
  3. "version": "0.1.1",
  4. "description": "A simple RPC layer for communicating with web workers and over other transports",
  5. "scripts": {
  6. "prepublish": "tsc",
  7. "pretest": "typings install && tsc -p tsconfig.test.json",
  8. "test": "mocha -R spec -u tdd test"
  9. },
  10. "author": "Christian Speckner <cnspeckn@googlemail.com> (https://github.com/DirtyHairy/)",
  11. "license": "MIT",
  12. "repository": {
  13. "type": "git",
  14. "url": "https://github.com/DirtyHairy/worker-rpc"
  15. },
  16. "keywords": [
  17. "worker",
  18. "rpc"
  19. ],
  20. "devDependencies": {
  21. "mocha": "~6.1.4",
  22. "typescript": "~3.4.5",
  23. "typings": "~2.1.1"
  24. },
  25. "main": "lib/index.js",
  26. "types": "lib/index.d.ts",
  27. "dependencies": {
  28. "microevent.ts": "~0.1.1"
  29. }
  30. }