package.json 875 B

12345678910111213141516171819202122232425262728293031
  1. {
  2. "version": "2.0.0-alpha.1",
  3. "name": "@tldraw/vec",
  4. "description": "2D vector utilities for TLDraw and maybe you, too.",
  5. "author": "@steveruizok",
  6. "repository": {
  7. "type": "git",
  8. "url": "git+https://github.com/tldraw/tldraw.git"
  9. },
  10. "license": "MIT",
  11. "keywords": [
  12. "2d",
  13. "vector",
  14. "typescript",
  15. "javascript"
  16. ],
  17. "main": "./src/index.ts",
  18. "scripts": {
  19. "start:all": "yarn start:utils",
  20. "start:utils": "node scripts/dev & yarn types:dev",
  21. "build:all": "yarn build",
  22. "build:utils": "yarn build",
  23. "build:packages": "yarn build",
  24. "build": "node scripts/build && yarn types:build",
  25. "types:dev": "tsc -w --p tsconfig.build.json",
  26. "types:build": "tsc -p tsconfig.build.json",
  27. "lint": "eslint src/ --ext .ts,.tsx",
  28. "clean": "rm -rf dist"
  29. },
  30. "gitHead": "3ab5db27b9e83736fdae934474e80e90c854922c"
  31. }