* feat: eslint * fix: lint * fix: lint * [WIKI-804] fix: refactor image uploader (#8210) * fix: refactor uploader * fix: props * fix: sites fix * fix: update @makeplane/plane-node-sdk version and refactor relation type imports * fix: update ESLint max-warnings threshold in package.json * fix: eslint formatting issues * fix: add captions track to video player component --------- Co-authored-by: M. Palanikannan <[email protected]> Co-authored-by: Prateek Shourya <[email protected]>
37 lines
983 B
JSON
37 lines
983 B
JSON
{
|
|
"name": "@plane/types",
|
|
"version": "1.1.0",
|
|
"license": "AGPL-3.0",
|
|
"private": true,
|
|
"type": "module",
|
|
"exports": {
|
|
".": "./dist/index.mjs",
|
|
"./package.json": "./package.json"
|
|
},
|
|
"scripts": {
|
|
"dev": "tsdown --watch",
|
|
"build": "tsdown",
|
|
"check:lint": "eslint . --max-warnings=151",
|
|
"check:types": "tsc --noEmit",
|
|
"check:format": "prettier --check .",
|
|
"fix:lint": "eslint . --fix --max-warnings=151",
|
|
"fix:format": "prettier --write .",
|
|
"clean": "rm -rf .turbo && rm -rf .next && rm -rf node_modules && rm -rf dist"
|
|
},
|
|
"peerDependencies": {
|
|
"react": "catalog:",
|
|
"react-dom": "catalog:"
|
|
},
|
|
"devDependencies": {
|
|
"@plane/typescript-config": "workspace:*",
|
|
"@types/node": "catalog:",
|
|
"@types/react": "catalog:",
|
|
"@types/react-dom": "catalog:",
|
|
"tsdown": "catalog:",
|
|
"typescript": "catalog:"
|
|
},
|
|
"main": "./dist/index.mjs",
|
|
"module": "./dist/index.mjs",
|
|
"types": "./dist/index.d.mts"
|
|
}
|