mirror of
https://github.com/makeplane/plane.git
synced 2026-02-25 04:35:21 +01:00
* feat: adding standard scripts for lint and format check * fix: update packages scripts * fix: adding tsup config to utils package * chore: updated build scripts in logger pacakge
47 lines
1.3 KiB
JSON
47 lines
1.3 KiB
JSON
{
|
|
"name": "@plane/decorators",
|
|
"version": "0.1.0",
|
|
"description": "Controller and route decorators for Express.js applications",
|
|
"license": "AGPL-3.0",
|
|
"private": true,
|
|
"main": "./dist/index.js",
|
|
"module": "./dist/index.mjs",
|
|
"types": "./dist/index.d.ts",
|
|
"files": [
|
|
"dist/**"
|
|
],
|
|
"scripts": {
|
|
"build": "tsup src/index.ts --format esm,cjs --dts --external express,ws",
|
|
"dev": "tsup src/index.ts --format esm,cjs --watch --dts --external express,ws",
|
|
"check:lint": "eslint . --max-warnings 0",
|
|
"check:types": "tsc --noEmit",
|
|
"check:format": "prettier --check \"**/*.{ts,tsx,md,json,css,scss}\"",
|
|
"fix:lint": "eslint . --fix",
|
|
"fix:format": "prettier --write \"**/*.{ts,tsx,md,json,css,scss}\"",
|
|
"clean": "rm -rf .turbo && rm -rf .next && rm -rf node_modules && rm -rf dist"
|
|
},
|
|
"dependencies": {
|
|
"express": "^4.21.2",
|
|
"reflect-metadata": "^0.2.2"
|
|
},
|
|
"devDependencies": {
|
|
"@plane/eslint-config": "*",
|
|
"@plane/typescript-config": "*",
|
|
"@types/express": "^4.17.21",
|
|
"@types/node": "^20.14.9",
|
|
"@types/reflect-metadata": "^0.1.0",
|
|
"@types/ws": "^8.5.10",
|
|
"tsup": "8.4.0",
|
|
"typescript": "5.8.3"
|
|
},
|
|
"peerDependencies": {
|
|
"express": ">=4.21.2",
|
|
"ws": ">=8.0.0"
|
|
},
|
|
"peerDependenciesMeta": {
|
|
"ws": {
|
|
"optional": true
|
|
}
|
|
}
|
|
}
|