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

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. {
  2. "name": "@tldraw/core",
  3. "version": "0.0.47",
  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. "types": "./dist/types/index.d.ts",
  16. "scripts": {
  17. "start": "node scripts/dev & tsc --watch --incremental --emitDeclarationOnly --declarationMap --outDir dist/types",
  18. "build": "yarn clean && node scripts/build && tsc --project tsconfig.build.json --emitDeclarationOnly --outDir dist/types",
  19. "lint": "eslint src/ --ext .ts,.tsx",
  20. "clean": "rm -rf dist",
  21. "ts-node": "ts-node",
  22. "docs": "typedoc --entryPoints src/index.ts"
  23. },
  24. "devDependencies": {
  25. "@types/jest": "^27.0.1",
  26. "@types/node": "^15.0.1",
  27. "@types/react": "^17.0.16",
  28. "@types/react-dom": "^17.0.9",
  29. "@typescript-eslint/eslint-plugin": "^4.19.0",
  30. "@typescript-eslint/parser": "^4.19.0",
  31. "babel-jest": "^27.0.6",
  32. "esbuild": "^0.11.11",
  33. "eslint": "^7.22.0",
  34. "react": "^17.0.2",
  35. "react-dom": "^17.0.2",
  36. "ts-node": "^9.1.1",
  37. "tslib": "^2.3.0",
  38. "typedoc": "^0.20.35",
  39. "typescript": "^4.3.5"
  40. },
  41. "peerDependencies": {
  42. "react": "^17.0.2",
  43. "react-dom": "^17.0.2"
  44. },
  45. "dependencies": {
  46. "deepmerge": "^4.2.2",
  47. "ismobilejs": "^1.1.1",
  48. "react-error-boundary": "^3.1.3",
  49. "react-use-gesture": "^9.1.3"
  50. },
  51. "gitHead": "a7dac0f83ad998e205c2aab58182cb4ba4e099a6"
  52. }