3c2c26c11e
* Add turbo run lint * Add lint to all apps and examples * Update eslint with monorepo configuration see: https://typescript-eslint.io/docs/linting/typed-linting/monorepos#one-tsconfigjson-per-package-and-an-optional-one-in-the-root * Remove unused rules * Exclude @tldraw/www from global eslint config * Remove duplicated eslint * Fix eslint prefer-const errors * Fix eslint no-unused-vars warning * Update package.json * Fix eslint no-unused-vars warning * bump eslint@^8.20.0 * Correct "Fix eslint no-unused-vars warning" This reverts commit 0158a2585af84b623f2c5581412252c8471375ae.
42 lines
1 KiB
JSON
42 lines
1 KiB
JSON
{
|
|
"name": "@tldraw/new-tab-extension",
|
|
"private": true,
|
|
"version": "0.1.1",
|
|
"description": "A tiny little new tab extension for tldraw.",
|
|
"author": "@steveruizok",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/tldraw/tldraw.git"
|
|
},
|
|
"license": "MIT",
|
|
"scripts": {
|
|
"dev:extension": "vite --host",
|
|
"build:extension": "yarn build",
|
|
"build": "tsc && vite build",
|
|
"preview": "vite preview",
|
|
"lint": "eslint src/ --ext .ts,.tsx"
|
|
},
|
|
"dependencies": {
|
|
"@tldraw/tldraw": "*",
|
|
"mobx": "^6.5.0",
|
|
"mobx-react-lite": "^3.3.0",
|
|
"mobx-utils": "^6.0.5",
|
|
"react": "^18.1.0",
|
|
"react-dom": "^18.1.0",
|
|
"react-router-dom": "^6.3.0"
|
|
},
|
|
"resolutions": {
|
|
"@types/react": "^18.0.11",
|
|
"@types/react-dom": "^18.0.5"
|
|
},
|
|
"devDependencies": {
|
|
"@types/react": "^18.0.11",
|
|
"@types/react-dom": "^18.0.5",
|
|
"@types/react-router-dom": "^5.3.3",
|
|
"@vitejs/plugin-react": "^1.0.7",
|
|
"config": "*",
|
|
"tsconfig": "*",
|
|
"typescript": "^4.7.2",
|
|
"vite": "^2.9.8"
|
|
}
|
|
}
|