Files
plane/packages/decorators/package.json

34 lines
1.1 KiB
JSON
Raw Normal View History

{
"name": "@plane/decorators",
"version": "0.1.0",
"description": "Controller and route decorators for Express.js applications",
"license": "AGPL-3.0",
"private": true,
"type": "module",
"exports": {
".": "./dist/index.mjs",
"./package.json": "./package.json"
},
"scripts": {
"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",
"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 .",
"clean": "rm -rf .turbo && rm -rf .next && rm -rf node_modules && rm -rf dist"
},
"devDependencies": {
"@plane/typescript-config": "workspace:*",
"@types/express": "4.17.23",
"@types/node": "catalog:",
"@types/ws": "^8.5.10",
"reflect-metadata": "^0.2.2",
"tsdown": "catalog:",
"typescript": "catalog:"
},
"main": "./dist/index.mjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.mts"
2025-11-26 10:27:56 +07:00
}