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.

package.json 1.7KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. {
  2. "name": "@tldraw/tldraw",
  3. "version": "0.1.3",
  4. "description": "A tiny little drawing app (editor)",
  5. "author": "@steveruizok",
  6. "repository": {
  7. "type": "git",
  8. "url": "git+https://github.com/tldraw/tldraw.git"
  9. },
  10. "license": "MIT",
  11. "keywords": [
  12. "react",
  13. "canvas",
  14. "zoom",
  15. "drawing",
  16. "whiteboard"
  17. ],
  18. "files": [
  19. "dist/**/*"
  20. ],
  21. "main": "./dist/cjs/index.js",
  22. "module": "./dist/esm/index.js",
  23. "types": "./dist/types/index.d.ts",
  24. "scripts": {
  25. "start": "node scripts/dev & yarn types:dev",
  26. "build": "node scripts/build && yarn types:build && node scripts/copy-readme",
  27. "types:dev": "tsc -w",
  28. "types:build": "tsc -p tsconfig.build.json && tsconfig-replace-paths -p tsconfig.build.json",
  29. "lint": "eslint src/ --ext .ts,.tsx",
  30. "clean": "rm -rf dist",
  31. "ts-node": "ts-node",
  32. "docs": "typedoc",
  33. "docs:watch": "typedoc --watch"
  34. },
  35. "peerDependencies": {
  36. "react": ">=16.8",
  37. "react-dom": "^16.8 || ^17.0"
  38. },
  39. "dependencies": {
  40. "@radix-ui/react-alert-dialog": "^0.1.1",
  41. "@radix-ui/react-checkbox": "^0.1.1",
  42. "@radix-ui/react-context-menu": "^0.1.1",
  43. "@radix-ui/react-dropdown-menu": "^0.1.1",
  44. "@radix-ui/react-icons": "^1.0.3",
  45. "@radix-ui/react-id": "^0.1.1",
  46. "@radix-ui/react-radio-group": "^0.1.1",
  47. "@radix-ui/react-tooltip": "^0.1.1",
  48. "@stitches/react": "^1.2.5",
  49. "@tldraw/core": "^0.1.18",
  50. "@tldraw/intersect": "^0.1.3",
  51. "@tldraw/vec": "^0.1.3",
  52. "perfect-freehand": "^1.0.16",
  53. "react-hotkeys-hook": "^3.4.0",
  54. "rko": "^0.6.0",
  55. "tslib": "^2.3.1"
  56. },
  57. "devDependencies": {
  58. "tsconfig-replace-paths": "^0.0.5"
  59. },
  60. "gitHead": "083b36e167b6911927a6b58cbbb830b11b33f00a"
  61. }