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.1KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. {
  2. "name": "@tldraw/tldraw",
  3. "version": "0.0.59",
  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. "@babel/core": "^7.15.5",
  32. "@babel/preset-env": "^7.15.4",
  33. "@types/jest": "^27.0.1",
  34. "@types/node": "^16.7.10",
  35. "@types/react": "^17.0.16",
  36. "@types/react-dom": "^17.0.9",
  37. "@typescript-eslint/eslint-plugin": "^4.30.0",
  38. "@typescript-eslint/parser": "^4.30.0",
  39. "esbuild": "^0.12.24",
  40. "eslint": "^7.32.0",
  41. "lerna": "^4.0.0",
  42. "react": "^17.0.2",
  43. "react-dom": "^17.0.2",
  44. "ts-node": "^10.2.1",
  45. "tslib": "^2.3.1",
  46. "typedoc": "^0.21.9",
  47. "typescript": "^4.4.2"
  48. },
  49. "peerDependencies": {
  50. "react": "^17.0.2",
  51. "react-dom": "^17.0.2"
  52. },
  53. "dependencies": {
  54. "@radix-ui/react-alert-dialog": "^0.0.20",
  55. "@radix-ui/react-checkbox": "^0.0.16",
  56. "@radix-ui/react-context-menu": "^0.0.23",
  57. "@radix-ui/react-dropdown-menu": "^0.0.22",
  58. "@radix-ui/react-icons": "^1.0.3",
  59. "@radix-ui/react-id": "^0.0.6",
  60. "@radix-ui/react-radio-group": "^0.0.18",
  61. "@radix-ui/react-tooltip": "^0.0.20",
  62. "@stitches/react": "^1.0.0",
  63. "@tldraw/core": "^0.0.59",
  64. "perfect-freehand": "^0.5.3",
  65. "react-hotkeys-hook": "^3.4.0",
  66. "rko": "^0.5.20"
  67. },
  68. "gitHead": "838fabdbff1a66d4d7ee8aa5c5d117bc55acbff2"
  69. }