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 941B

12345678910111213141516171819202122232425262728293031323334353637
  1. {
  2. "version": "1.1.11",
  3. "name": "@tldraw/curve",
  4. "description": "Curve 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. "curve",
  15. "spline",
  16. "typescript",
  17. "javascript"
  18. ],
  19. "files": [
  20. "dist/**/*"
  21. ],
  22. "main": "./dist/cjs/index.js",
  23. "module": "./dist/esm/index.js",
  24. "types": "./dist/types/index.d.ts",
  25. "scripts": {
  26. "start:packages": "yarn start",
  27. "start:core": "yarn start",
  28. "start": "node scripts/dev & yarn types:dev",
  29. "build:core": "yarn build",
  30. "build:packages": "yarn build",
  31. "build": "node scripts/build && yarn types:build",
  32. "types:dev": "tsc -w --p tsconfig.build.json",
  33. "types:build": "tsc -p tsconfig.build.json",
  34. "lint": "eslint src/ --ext .ts,.tsx",
  35. "clean": "rm -rf dist"
  36. }
  37. }