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

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. {
  2. "name": "@tldraw/tldraw",
  3. "version": "0.0.41",
  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. "files": [
  15. "README.md",
  16. "dist"
  17. ],
  18. "main": "./dist/cjs/index.js",
  19. "types": "./dist/types/index.d.ts",
  20. "typings": "./dist/types/index.d.ts",
  21. "scripts": {
  22. "dev": "node scripts/dev & tsc --watch --incremental --emitDeclarationOnly --outDir dist/types",
  23. "build": "yarn clean && node scripts/build && tsc --emitDeclarationOnly --outDir dist/types",
  24. "lint": "eslint src/ --ext .ts,.tsx",
  25. "clean": "rm -rf dist",
  26. "ts-node": "ts-node",
  27. "docs": "typedoc --entryPoints src/index.ts"
  28. },
  29. "devDependencies": {
  30. "@tldraw/core": "*",
  31. "@types/node": "^15.0.1",
  32. "@types/react": "^17.0.16",
  33. "@types/react-dom": "^17.0.9",
  34. "@typescript-eslint/eslint-plugin": "^4.19.0",
  35. "@typescript-eslint/parser": "^4.19.0",
  36. "esbuild": "^0.11.11",
  37. "eslint": "^7.22.0",
  38. "react": "^17.0.2",
  39. "react-dom": "^17.0.2",
  40. "ts-node": "^9.1.1",
  41. "tslib": "^2.3.0",
  42. "typedoc": "^0.20.35",
  43. "typescript": "^4.3.5"
  44. },
  45. "peerDependencies": {
  46. "react": "^17.0.2",
  47. "react-dom": "^17.0.2"
  48. },
  49. "dependencies": {
  50. "@radix-ui/react-checkbox": "^0.0.16",
  51. "@radix-ui/react-context-menu": "^0.0.23",
  52. "@radix-ui/react-dropdown-menu": "^0.0.22",
  53. "@radix-ui/react-icons": "^1.0.3",
  54. "@radix-ui/react-id": "^0.0.6",
  55. "@radix-ui/react-radio-group": "^0.0.18",
  56. "@radix-ui/react-tooltip": "^0.0.20",
  57. "@stitches/react": "^0.2.3",
  58. "@tldraw/core": "^0.0.41",
  59. "ismobilejs": "^1.1.1",
  60. "perfect-freehand": "^0.4.10",
  61. "react-hotkeys-hook": "^3.4.0",
  62. "zustand": "^3.5.7"
  63. }
  64. }