Tldraw/packages/tldraw/package.json

73 wiersze
2.1 KiB
JSON
Czysty Zwykły widok Historia

2021-08-10 16:12:55 +00:00
{
"name": "@tldraw/tldraw",
2021-09-06 13:04:56 +00:00
"version": "0.0.80",
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",
"types:dev": "tsc --watch",
"types:build": "tsc --project 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",
2021-08-10 16:12:55 +00:00
"@types/react": "^17.0.16",
"@types/react-dom": "^17.0.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-10 16:12:55 +00:00
"react": "^17.0.2",
"react-dom": "^17.0.2",
2021-08-30 07:45:10 +00:00
"ts-node": "^10.2.1",
"tslib": "^2.3.1",
"typedoc": "^0.21.9",
2021-09-04 15:21:02 +00:00
"typescript": "^4.4.2"
2021-08-10 16:12:55 +00:00
},
"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",
"@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",
2021-09-04 12:02:13 +00:00
"@stitches/react": "^1.0.0",
2021-09-06 13:04:56 +00:00
"@tldraw/core": "^0.0.80",
"perfect-freehand": "^0.5.3",
2021-08-10 16:12:55 +00:00
"react-hotkeys-hook": "^3.4.0",
2021-09-06 12:43:56 +00:00
"rko": "^0.5.23"
2021-09-05 11:00:52 +00:00
}
2021-09-06 13:04:56 +00:00
}