Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

package.json 1.7KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. {
  2. "name": "@tldraw/core",
  3. "version": "0.0.72",
  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",
  29. "docs:watch": "typedoc --watch"
  30. },
  31. "devDependencies": {
  32. "@babel/core": "^7.15.5",
  33. "@babel/preset-env": "^7.15.4",
  34. "@types/jest": "^27.0.1",
  35. "@types/node": "^16.7.10",
  36. "@types/react": "^17.0.16",
  37. "@types/react-dom": "^17.0.9",
  38. "@typescript-eslint/eslint-plugin": "^4.30.0",
  39. "@typescript-eslint/parser": "^4.30.0",
  40. "esbuild": "^0.12.24",
  41. "eslint": "^7.32.0",
  42. "lerna": "^4.0.0",
  43. "react": "^17.0.2",
  44. "react-dom": "^17.0.2",
  45. "ts-node": "^10.2.1",
  46. "tslib": "^2.3.1",
  47. "typedoc": "^0.21.9",
  48. "typescript": "^4.4.2"
  49. },
  50. "peerDependencies": {
  51. "react": "^17.0.2",
  52. "react-dom": "^17.0.2"
  53. },
  54. "dependencies": {
  55. "deepmerge": "^4.2.2",
  56. "react-use-gesture": "^9.1.3"
  57. },
  58. "gitHead": "39b8751b65706ba1bfd3a03a01e4e676f56a54ea"
  59. }