Tldraw/packages/tldraw/package.json

62 wiersze
1.7 KiB
JSON
Czysty Zwykły widok Historia

2021-08-10 16:12:55 +00:00
{
"name": "@tldraw/tldraw",
2021-11-10 12:11:49 +00:00
"version": "0.1.11",
2021-09-05 11:00:52 +00:00
"description": "A tiny little drawing app (editor)",
2021-08-10 16:12:55 +00:00
"author": "@steveruizok",
"repository": {
"type": "git",
"url": "git+https://github.com/tldraw/tldraw.git"
2021-08-10 16:12:55 +00:00
},
"license": "MIT",
"keywords": [
"react",
"canvas",
"zoom",
"drawing",
"whiteboard"
],
2021-09-05 11:19:08 +00:00
"files": [
"dist/**/*"
],
2021-08-10 16:12:55 +00:00
"main": "./dist/cjs/index.js",
2021-08-27 09:53:01 +00:00
"module": "./dist/esm/index.js",
2021-08-10 16:12:55 +00:00
"types": "./dist/types/index.d.ts",
"scripts": {
"start:electron": "yarn start",
2021-08-30 18:10:30 +00:00
"start": "node scripts/dev & yarn types:dev",
"build": "node scripts/build && yarn types:build && node scripts/copy-readme",
2021-09-14 07:51:24 +00:00
"types:dev": "tsc -w",
"types:build": "tsc -p tsconfig.build.json && tsconfig-replace-paths -p tsconfig.build.json",
2021-08-10 16:12:55 +00:00
"lint": "eslint src/ --ext .ts,.tsx",
"clean": "rm -rf dist",
"ts-node": "ts-node",
2021-09-05 09:51:21 +00:00
"docs": "typedoc",
"docs:watch": "typedoc --watch"
2021-08-10 16:12:55 +00:00
},
2021-11-04 13:09:51 +00:00
"peerDependencies": {
"react": ">=16.8",
"react-dom": "^16.8 || ^17.0"
2021-11-04 13:09:51 +00:00
},
2021-08-10 16:12:55 +00:00
"dependencies": {
"@radix-ui/react-alert-dialog": "^0.1.1",
"@radix-ui/react-checkbox": "^0.1.1",
"@radix-ui/react-context-menu": "^0.1.1",
"@radix-ui/react-dropdown-menu": "^0.1.1",
2021-08-10 16:12:55 +00:00
"@radix-ui/react-icons": "^1.0.3",
"@radix-ui/react-id": "^0.1.1",
"@radix-ui/react-radio-group": "^0.1.1",
"@radix-ui/react-tooltip": "^0.1.1",
"@stitches/react": "^1.2.5",
"@tldraw/core": "^0.1.18",
2021-11-04 13:01:33 +00:00
"@tldraw/intersect": "^0.1.3",
"@tldraw/vec": "^0.1.3",
2021-10-13 18:58:12 +00:00
"perfect-freehand": "^1.0.16",
2021-08-10 16:12:55 +00:00
"react-hotkeys-hook": "^3.4.0",
"rko": "^0.6.2",
"tslib": "^2.3.1"
2021-11-04 13:00:51 +00:00
},
"devDependencies": {
"tsconfig-replace-paths": "^0.0.5"
},
2021-10-22 19:17:42 +00:00
"gitHead": "083b36e167b6911927a6b58cbbb830b11b33f00a"
}