2025-03-26 20:24:05 +05:30
|
|
|
{
|
|
|
|
|
"name": "@plane/decorators",
|
|
|
|
|
"version": "0.1.0",
|
|
|
|
|
"description": "Controller and route decorators for Express.js applications",
|
|
|
|
|
"license": "AGPL-3.0",
|
|
|
|
|
"private": true,
|
2025-10-06 21:01:32 +05:30
|
|
|
"exports": {
|
|
|
|
|
".": {
|
|
|
|
|
"import": "./dist/index.mjs",
|
|
|
|
|
"require": "./dist/index.js"
|
|
|
|
|
},
|
|
|
|
|
"./package.json": "./package.json"
|
|
|
|
|
},
|
2025-03-26 20:24:05 +05:30
|
|
|
"scripts": {
|
2025-09-03 14:01:57 +05:30
|
|
|
"build": "tsdown",
|
|
|
|
|
"dev": "tsdown --watch",
|
2025-09-30 19:28:15 +05:30
|
|
|
"check:lint": "eslint . --max-warnings 2",
|
2025-07-04 14:23:18 +05:30
|
|
|
"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"
|
2025-03-26 20:24:05 +05:30
|
|
|
},
|
|
|
|
|
"devDependencies": {
|
2025-08-19 07:36:42 -07:00
|
|
|
"@plane/eslint-config": "workspace:*",
|
|
|
|
|
"@plane/typescript-config": "workspace:*",
|
2025-04-30 09:16:59 -07:00
|
|
|
"@types/express": "^4.17.21",
|
2025-10-08 18:42:53 +05:30
|
|
|
"@types/node": "catalog:",
|
2025-03-26 20:24:05 +05:30
|
|
|
"@types/ws": "^8.5.10",
|
2025-08-29 14:29:16 +05:30
|
|
|
"reflect-metadata": "^0.2.2",
|
2025-09-03 14:01:57 +05:30
|
|
|
"tsdown": "catalog:",
|
2025-09-01 19:42:56 +05:30
|
|
|
"typescript": "catalog:"
|
2025-10-06 21:01:32 +05:30
|
|
|
},
|
|
|
|
|
"main": "./dist/index.js",
|
|
|
|
|
"module": "./dist/index.mjs",
|
|
|
|
|
"types": "./dist/index.d.ts"
|
2025-03-26 20:24:05 +05:30
|
|
|
}
|