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 2.0KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. {
  2. "name": "@tldraw/tldraw",
  3. "version": "0.0.57",
  4. "private": false,
  5. "description": "A tiny little drawing app (editor).",
  6. "author": "@steveruizok",
  7. "repository": {
  8. "type": "git",
  9. "url": "git+https://github.com/tldraw/tldraw.git",
  10. "directory": "packages/tldraw"
  11. },
  12. "license": "MIT",
  13. "keywords": [],
  14. "main": "./dist/cjs/index.js",
  15. "module": "./dist/esm/index.js",
  16. "types": "./dist/types/index.d.ts",
  17. "typings": "./dist/types/index.d.ts",
  18. "scripts": {
  19. "start:pre": "node scripts/pre-dev && yarn types:pre",
  20. "start": "node scripts/dev & yarn types:dev",
  21. "build": "yarn clean && node scripts/build && yarn types:build",
  22. "types:pre": "tsc",
  23. "types:dev": "tsc --watch",
  24. "types:build": "tsc --project tsconfig.build.json",
  25. "lint": "eslint src/ --ext .ts,.tsx",
  26. "clean": "rm -rf dist",
  27. "ts-node": "ts-node",
  28. "docs": "typedoc --entryPoints src/index.ts"
  29. },
  30. "devDependencies": {
  31. "@tldraw/core": "*",
  32. "@types/jest": "^27.0.1",
  33. "@types/node": "^16.7.6",
  34. "@types/react": "^17.0.16",
  35. "@types/react-dom": "^17.0.9",
  36. "@typescript-eslint/eslint-plugin": "^4.29.3",
  37. "@typescript-eslint/parser": "^4.29.3",
  38. "esbuild": "^0.12.24",
  39. "eslint": "^7.32.0",
  40. "react": "^17.0.2",
  41. "react-dom": "^17.0.2",
  42. "ts-node": "^10.2.1",
  43. "tslib": "^2.3.1",
  44. "typedoc": "^0.21.9",
  45. "typescript": "^4.4.2"
  46. },
  47. "peerDependencies": {
  48. "react": "^17.0.2",
  49. "react-dom": "^17.0.2"
  50. },
  51. "dependencies": {
  52. "@radix-ui/react-alert-dialog": "^0.0.20",
  53. "@radix-ui/react-checkbox": "^0.0.17",
  54. "@radix-ui/react-context-menu": "^0.0.24",
  55. "@radix-ui/react-dropdown-menu": "^0.0.23",
  56. "@radix-ui/react-icons": "^1.0.3",
  57. "@radix-ui/react-id": "^0.0.6",
  58. "@radix-ui/react-radio-group": "^0.0.19",
  59. "@radix-ui/react-tooltip": "^0.0.21",
  60. "@stitches/react": "^1.0.0",
  61. "@tldraw/core": "^0.0.57",
  62. "ismobilejs": "^1.1.1",
  63. "perfect-freehand": "^0.5.3",
  64. "react-hotkeys-hook": "^3.4.0",
  65. "rko": "^0.5.19"
  66. }
  67. }