Tldraw/packages/tldraw/package.json

64 wiersze
2.0 KiB
JSON
Czysty Zwykły widok Historia

2021-08-10 16:12:55 +00:00
{
"name": "@tldraw/tldraw",
2021-08-18 00:00:46 +00:00
"version": "0.0.49",
2021-08-13 13:06:18 +00:00
"private": false,
2021-08-10 16:12:55 +00:00
"description": "A tiny little drawing app (editor).",
"author": "@steveruizok",
"repository": {
"type": "git",
"url": "git+https://github.com/tldraw/tldraw.git",
"directory": "packages/tldraw"
},
"license": "MIT",
"keywords": [],
"main": "./dist/cjs/index.js",
"types": "./dist/types/index.d.ts",
2021-08-11 21:11:23 +00:00
"typings": "./dist/types/index.d.ts",
2021-08-10 16:12:55 +00:00
"scripts": {
2021-08-13 11:13:11 +00:00
"start": "node scripts/dev & tsc --watch --incremental --emitDeclarationOnly --declarationMap --outDir dist/types",
2021-08-14 15:46:21 +00:00
"build": "yarn clean && node scripts/build && tsc --project tsconfig.build.json --emitDeclarationOnly --outDir dist/types",
2021-08-10 16:12:55 +00:00
"lint": "eslint src/ --ext .ts,.tsx",
"clean": "rm -rf dist",
"ts-node": "ts-node",
"docs": "typedoc --entryPoints src/index.ts"
},
"devDependencies": {
"@tldraw/core": "*",
2021-08-13 09:28:09 +00:00
"@types/jest": "^27.0.1",
2021-08-10 16:12:55 +00:00
"@types/node": "^15.0.1",
"@types/react": "^17.0.16",
"@types/react-dom": "^17.0.9",
"@typescript-eslint/eslint-plugin": "^4.19.0",
"@typescript-eslint/parser": "^4.19.0",
"esbuild": "^0.11.11",
"eslint": "^7.22.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"ts-node": "^9.1.1",
"tslib": "^2.3.0",
"typedoc": "^0.20.35",
"typescript": "^4.3.5"
},
"peerDependencies": {
"react": "^17.0.2",
"react-dom": "^17.0.2"
},
"dependencies": {
2021-08-16 07:49:31 +00:00
"@radix-ui/react-alert-dialog": "^0.0.20",
2021-08-10 16:12:55 +00:00
"@radix-ui/react-checkbox": "^0.0.16",
"@radix-ui/react-context-menu": "^0.0.23",
"@radix-ui/react-dropdown-menu": "^0.0.22",
"@radix-ui/react-icons": "^1.0.3",
"@radix-ui/react-id": "^0.0.6",
"@radix-ui/react-radio-group": "^0.0.18",
"@radix-ui/react-tooltip": "^0.0.20",
"@stitches/react": "^0.2.3",
2021-08-18 00:00:46 +00:00
"@tldraw/core": "^0.0.49",
2021-08-10 16:12:55 +00:00
"ismobilejs": "^1.1.1",
"perfect-freehand": "^0.5.1",
2021-08-10 16:12:55 +00:00
"react-hotkeys-hook": "^3.4.0",
"zustand": "^3.5.7"
2021-08-13 12:48:08 +00:00
},
"gitHead": "4a7439ddf81b615ee49fddbe00802699975f9375"
2021-08-16 07:49:31 +00:00
}