| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- {
- "name": "@tldraw/monorepo",
- "private": true,
- "version": "2.0.0-alpha.1",
- "description": "A tiny little drawing app.",
- "author": "@steveruizok",
- "repository": {
- "type": "git",
- "url": "https://github.com/tldraw/tldraw.git"
- },
- "license": "MIT",
- "workspaces": [
- "packages/core",
- "packages/react",
- "packages/utils/*",
- "apps/*",
- "demo"
- ],
- "scripts": {
- "build": "lerna run build --stream",
- "build:shapes": "lerna run build:shapes --stream",
- "build:tools": "lerna run build:tools --stream",
- "build:packages": "lerna run build:packages --stream",
- "start:shapes": "lerna run start:shapes --stream",
- "start:tools": "lerna run start:tools --stream",
- "start": "lerna run start --stream --parallel",
- "start:packages": "lerna run start:packages --parallel",
- "dev": "cd demo && yarn dev",
- "fix:style": "yarn run pretty-quick",
- "lerna": "lerna",
- "test": "lerna run test --stream",
- "test:ci": "lerna run test:ci --stream",
- "test:watch": "lerna run test:watch --stream",
- "docs": "lerna run typedoc",
- "docs:watch": "lerna run typedoc --watch",
- "postinstall": "yarn build:packages",
- "pretty-quick": "pretty-quick"
- },
- "devDependencies": {
- "@swc-node/jest": "^1.5.2",
- "@testing-library/jest-dom": "^5.16.4",
- "@testing-library/react": "^13.3.0",
- "@types/jest": "^28.1.1",
- "@types/node": "^17.0.42",
- "@types/react": "^17.0.0",
- "@types/react-dom": "^17.0.0",
- "@types/vscode": "^1.68.0",
- "@typescript-eslint/eslint-plugin": "^5.27.1",
- "@typescript-eslint/parser": "^5.27.1",
- "eslint": "^8.17.0",
- "fake-indexeddb": "^3.1.8",
- "init-package-json": "^3.0.2",
- "jest": "^28.1.1",
- "lerna": "^5.1.1",
- "lint-staged": "^13.0.1",
- "prettier": "^2.6.2",
- "prettier-plugin-jsdoc": "^0.3.38",
- "pretty-quick": "^3.1.3",
- "resize-observer-polyfill": "^1.5.1",
- "tslib": "^2.4.0",
- "typedoc": "^0.22.17",
- "typescript": "^4.7.3"
- }
- }
|