package.json 967 B

1234567891011121314151617181920212223242526272829303132333435
  1. {
  2. "version": "2.0.0-alpha.1",
  3. "name": "@tldraw/intersect",
  4. "description": "2D intersection 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. "intersection",
  15. "typescript",
  16. "javascript"
  17. ],
  18. "main": "./src/index.ts",
  19. "scripts": {
  20. "start:all": "yarn start:utils",
  21. "start:utils": "node scripts/dev & yarn types:dev",
  22. "build:all": "yarn build",
  23. "build:utils": "yarn build",
  24. "build:packages": "yarn build",
  25. "build": "node scripts/build && yarn types:build",
  26. "types:dev": "tsc -w --p tsconfig.build.json",
  27. "types:build": "tsc -p tsconfig.build.json",
  28. "lint": "eslint src/ --ext .ts,.tsx",
  29. "clean": "rm -rf dist"
  30. },
  31. "dependencies": {
  32. "@tldraw/vec": "2.0.0-alpha.1"
  33. },
  34. "gitHead": "3ab5db27b9e83736fdae934474e80e90c854922c"
  35. }