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

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. {
  2. "name": "@tldraw/core",
  3. "version": "0.0.81",
  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. "files": [
  15. "dist/**/*"
  16. ],
  17. "main": "./dist/cjs/index.js",
  18. "module": "./dist/esm/index.js",
  19. "types": "./dist/types/index.d.ts",
  20. "typings": "./dist/types/index.d.ts",
  21. "scripts": {
  22. "start:pre": "node scripts/pre-dev && yarn types:pre",
  23. "start": "node scripts/dev & yarn types:dev",
  24. "build": "node scripts/build && yarn types:build",
  25. "types:pre": "tsc",
  26. "types:dev": "tsc --watch",
  27. "types:build": "tsc --project tsconfig.build.json",
  28. "lint": "eslint src/ --ext .ts,.tsx",
  29. "clean": "rm -rf dist",
  30. "ts-node": "ts-node",
  31. "docs": "typedoc",
  32. "docs:watch": "typedoc --watch"
  33. },
  34. "devDependencies": {
  35. "@babel/core": "^7.15.5",
  36. "@babel/preset-env": "^7.15.4",
  37. "@types/jest": "^27.0.1",
  38. "@types/node": "^16.7.10",
  39. "@types/react": "^17.0.16",
  40. "@types/react-dom": "^17.0.9",
  41. "@typescript-eslint/eslint-plugin": "^4.30.0",
  42. "@typescript-eslint/parser": "^4.30.0",
  43. "esbuild": "^0.12.24",
  44. "eslint": "^7.32.0",
  45. "lerna": "^4.0.0",
  46. "react": "^17.0.2",
  47. "react-dom": "^17.0.2",
  48. "ts-node": "^10.2.1",
  49. "tslib": "^2.3.1",
  50. "typedoc": "^0.21.9",
  51. "typescript": "^4.4.2"
  52. },
  53. "peerDependencies": {
  54. "react": "^17.0.2",
  55. "react-dom": "^17.0.2"
  56. },
  57. "dependencies": {
  58. "react-use-gesture": "^9.1.3"
  59. },
  60. "gitHead": "55da8880eb3d8ab5fb62b5eb7853065922c95dcf"
  61. }