logseq/tldraw/package.json

45 lines
1.1 KiB
JSON
Raw Normal View History

2022-05-16 11:55:07 +00:00
{
"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": {
2022-08-26 11:11:07 +00:00
"build": "cd apps/tldraw-logseq && yarn build",
"postinstall": "yarn build",
2022-06-13 02:31:18 +00:00
"dev": "cd demo && yarn dev",
2022-05-16 11:55:07 +00:00
"fix:style": "yarn run pretty-quick",
2022-08-31 03:11:13 +00:00
"pretty-quick": "pretty-quick --pattern 'tldraw/**/*.{js,jsx,ts,tsx,css,html}'"
2022-05-16 11:55:07 +00:00
},
"devDependencies": {
2022-06-12 09:39:58 +00:00
"@types/node": "^17.0.42",
2022-06-12 09:58:11 +00:00
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
2022-09-02 13:38:40 +00:00
"@typescript-eslint/eslint-plugin": "^5.36.1",
"@typescript-eslint/parser": "^5.36.1",
"eslint": "^8.24.0",
2022-06-12 09:39:58 +00:00
"lint-staged": "^13.0.1",
"prettier": "^2.6.2",
"prettier-plugin-jsdoc": "^0.3.38",
"pretty-quick": "^3.1.3",
2022-05-16 11:55:07 +00:00
"resize-observer-polyfill": "^1.5.1",
2022-06-12 09:39:58 +00:00
"tslib": "^2.4.0",
2022-09-02 13:38:40 +00:00
"typescript": "^4.8.2"
},
"dependencies": {
"@types/uuid": "^8.3.4"
2022-05-16 11:55:07 +00:00
}
2022-06-12 09:39:58 +00:00
}