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.
36 lines
931 B
JSON
36 lines
931 B
JSON
{
|
|
"name": "@tldraw/vscode-editor",
|
|
"version": "1.11.0",
|
|
"private": true,
|
|
"description": "An an editor for the tldraw vscode extension.",
|
|
"author": "@steveruizok",
|
|
"license": "MIT",
|
|
"keywords": [
|
|
"react",
|
|
"typescript",
|
|
"esbuild"
|
|
],
|
|
"scripts": {
|
|
"start:vscode": "node scripts/dev.mjs -w",
|
|
"build": "node scripts/build.mjs",
|
|
"build:apps": "yarn build",
|
|
"lint": "eslint src/ --ext .ts,.tsx"
|
|
},
|
|
"devDependencies": {
|
|
"@tldraw/tldraw": "*",
|
|
"@types/node": "^17.0.14",
|
|
"@types/react": "^18.0.12",
|
|
"@types/react-dom": "^18.0.5",
|
|
"@types/react-router-dom": "^5.1.8",
|
|
"concurrently": "7.0.0",
|
|
"create-serve": "1.0.1",
|
|
"esbuild": "^0.14.38",
|
|
"esbuild-serve": "^1.0.1",
|
|
"react": "^18.1.0",
|
|
"react-dom": "^18.1.0",
|
|
"rimraf": "3.0.2",
|
|
"tslib": "^2.4.0",
|
|
"typescript": "^4.7.3"
|
|
},
|
|
"gitHead": "a7dac0f83ad998e205c2aab58182cb4ba4e099a6"
|
|
}
|