Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

package.json 915B

1234567891011121314151617181920212223242526272829303132333435
  1. {
  2. "version": "1.1.5",
  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. "files": [
  18. "dist/**/*"
  19. ],
  20. "main": "./dist/cjs/index.js",
  21. "module": "./dist/esm/index.js",
  22. "types": "./dist/types/index.d.ts",
  23. "scripts": {
  24. "start:packages": "yarn start",
  25. "start:core": "yarn start",
  26. "start": "node scripts/dev & yarn types:dev",
  27. "build:core": "yarn build",
  28. "build:packages": "yarn build",
  29. "build": "node scripts/build && yarn types:build",
  30. "types:dev": "tsc -w --p tsconfig.build.json",
  31. "types:build": "tsc -p tsconfig.build.json",
  32. "lint": "eslint src/ --ext .ts,.tsx",
  33. "clean": "rm -rf dist"
  34. }
  35. }