Tldraw/packages/tldraw/package.json

76 wiersze
2.2 KiB
JSON
Czysty Zwykły widok Historia

2021-08-10 16:12:55 +00:00
{
"name": "@tldraw/tldraw",
2021-10-14 16:32:35 +00:00
"version": "0.0.116",
2021-08-13 13:06:18 +00:00
"private": false,
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",
"directory": "packages/tldraw"
},
"license": "MIT",
"keywords": [],
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",
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-30 18:10:30 +00:00
"start:pre": "node scripts/pre-dev && yarn types:pre",
"start": "node scripts/dev & yarn types:dev",
"build": "node scripts/build && yarn types:build",
2021-08-30 18:10:30 +00:00
"types:pre": "tsc",
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
},
"devDependencies": {
2021-09-04 15:21:02 +00:00
"@babel/core": "^7.15.5",
"@babel/preset-env": "^7.15.4",
2021-08-13 09:28:09 +00:00
"@types/jest": "^27.0.1",
"@types/node": "^16.7.10",
"@types/react": "^16.9.55",
"@types/react-dom": "^16.9.9",
"@typescript-eslint/eslint-plugin": "^4.30.0",
"@typescript-eslint/parser": "^4.30.0",
2021-08-30 07:45:10 +00:00
"esbuild": "^0.12.24",
"eslint": "^7.32.0",
2021-09-04 15:21:02 +00:00
"lerna": "^4.0.0",
2021-08-30 07:45:10 +00:00
"ts-node": "^10.2.1",
2021-09-14 07:51:24 +00:00
"tsconfig-replace-paths": "^0.0.5",
2021-08-30 07:45:10 +00:00
"tslib": "^2.3.1",
"typedoc": "^0.22.3",
2021-09-04 15:21:02 +00:00
"typescript": "^4.4.2"
2021-08-10 16:12:55 +00:00
},
"peerDependencies": {
"react": ">=16.8",
"react-dom": "^16.8 || ^17.0"
2021-08-10 16:12:55 +00:00
},
"dependencies": {
2021-08-16 07:49:31 +00:00
"@radix-ui/react-alert-dialog": "^0.0.20",
"@radix-ui/react-checkbox": "^0.0.16",
"@radix-ui/react-context-menu": "^0.0.23",
"@radix-ui/react-dropdown-menu": "^0.0.22",
2021-08-10 16:12:55 +00:00
"@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/core": "^1.2.0",
2021-09-04 12:02:13 +00:00
"@stitches/react": "^1.0.0",
2021-10-14 16:32:35 +00:00
"@tldraw/core": "^0.0.116",
"@tldraw/intersect": "^0.0.116",
"@tldraw/vec": "^0.0.116",
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",
2021-09-08 11:53:52 +00:00
"rko": "^0.5.25"
},
2021-09-12 13:11:29 +00:00
"gitHead": "5cb031ddc264846ec6732d7179511cddea8ef034"
}