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

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