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

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. {
  2. "name": "@tldraw/core",
  3. "version": "0.0.51",
  4. "private": false,
  5. "description": "A tiny little drawing app (core).",
  6. "author": "@steveruizok",
  7. "repository": {
  8. "type": "git",
  9. "url": "git+https://github.com/tldraw/tldraw.git",
  10. "directory": "packages/core"
  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. "@types/jest": "^27.0.1",
  32. "@types/node": "^16.7.6",
  33. "@types/react": "^17.0.16",
  34. "@types/react-dom": "^17.0.9",
  35. "@typescript-eslint/eslint-plugin": "^4.29.3",
  36. "@typescript-eslint/parser": "^4.29.3",
  37. "esbuild": "^0.12.24",
  38. "eslint": "^7.32.0",
  39. "react": "^17.0.2",
  40. "react-dom": "^17.0.2",
  41. "ts-node": "^10.2.1",
  42. "tslib": "^2.3.1",
  43. "typedoc": "^0.21.9",
  44. "typescript": "^4.4.2"
  45. },
  46. "peerDependencies": {
  47. "react": "^17.0.2",
  48. "react-dom": "^17.0.2"
  49. },
  50. "dependencies": {
  51. "deepmerge": "^4.2.2",
  52. "ismobilejs": "^1.1.1",
  53. "react-error-boundary": "^3.1.3",
  54. "react-use-gesture": "^9.1.3"
  55. },
  56. "gitHead": "a7dac0f83ad998e205c2aab58182cb4ba4e099a6"
  57. }