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-11-21 15:13:52 +07:00
|
|
|
"type": "module",
|
2025-10-06 21:01:32 +05:30
|
|
|
"exports": {
|
2025-11-21 15:13:52 +07:00
|
|
|
".": "./dist/index.mjs",
|
2025-10-06 21:01:32 +05:30
|
|
|
"./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-11-26 10:27:56 +07:00
|
|
|
"check:lint": "pnpm exec oxlint . --config ../../.oxlintrc.json --type-aware --tsconfig ../../tsconfig.oxlint.json",
|
2025-07-04 14:23:18 +05:30
|
|
|
"check:types": "tsc --noEmit",
|
2025-11-26 10:27:56 +07:00
|
|
|
"check:format": "pnpm exec oxfmt --check .",
|
|
|
|
|
"fix:lint": "pnpm exec oxlint . --config ../../.oxlintrc.json --type-aware --tsconfig ../../tsconfig.oxlint.json --fix",
|
|
|
|
|
"fix:format": "pnpm exec oxfmt .",
|
2025-07-04 14:23:18 +05:30
|
|
|
"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/typescript-config": "workspace:*",
|
2025-11-06 00:09:35 -08:00
|
|
|
"@types/express": "4.17.23",
|
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
|
|
|
},
|
2025-11-21 15:13:52 +07:00
|
|
|
"main": "./dist/index.mjs",
|
2025-10-06 21:01:32 +05:30
|
|
|
"module": "./dist/index.mjs",
|
2025-11-21 15:13:52 +07:00
|
|
|
"types": "./dist/index.d.mts"
|
2025-11-26 10:27:56 +07:00
|
|
|
}
|