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

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. {
  2. "name": "@tldraw/core",
  3. "version": "0.0.50",
  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": "node scripts/dev & tsc --watch --incremental --emitDeclarationOnly --declarationMap --outDir dist/types",
  20. "build": "yarn clean && node scripts/build && tsc --project tsconfig.build.json --emitDeclarationOnly --declarationMap --outDir dist/types",
  21. "lint": "eslint src/ --ext .ts,.tsx",
  22. "clean": "rm -rf dist",
  23. "ts-node": "ts-node",
  24. "docs": "typedoc --entryPoints src/index.ts"
  25. },
  26. "devDependencies": {
  27. "@types/jest": "^27.0.1",
  28. "@types/node": "^16.7.6",
  29. "@types/react": "^17.0.16",
  30. "@types/react-dom": "^17.0.9",
  31. "@typescript-eslint/eslint-plugin": "^4.29.3",
  32. "@typescript-eslint/parser": "^4.29.3",
  33. "esbuild": "^0.12.24",
  34. "eslint": "^7.32.0",
  35. "react": "^17.0.2",
  36. "react-dom": "^17.0.2",
  37. "ts-node": "^10.2.1",
  38. "tslib": "^2.3.1",
  39. "typedoc": "^0.21.9",
  40. "typescript": "^4.4.2"
  41. },
  42. "peerDependencies": {
  43. "react": "^17.0.2",
  44. "react-dom": "^17.0.2"
  45. },
  46. "dependencies": {
  47. "deepmerge": "^4.2.2",
  48. "ismobilejs": "^1.1.1",
  49. "react-error-boundary": "^3.1.3",
  50. "react-use-gesture": "^9.1.3"
  51. },
  52. "gitHead": "a7dac0f83ad998e205c2aab58182cb4ba4e099a6"
  53. }