{ "name": "@plane/constants", "version": "0.27.1", "private": true, "license": "AGPL-3.0", "files": [ "dist/**/*" ], "main": "./dist/index.js", "module": "./dist/index.mjs", "types": "./dist/index.d.ts", "exports": { ".": { "types": "./dist/index.d.ts", "require": "./dist/index.js", "import": "./dist/index.js" } }, "scripts": { "dev": "tsup --watch", "build": "tsc --noEmit && tsup", "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": { "@plane/types": "*" }, "devDependencies": { "@plane/eslint-config": "*", "@plane/typescript-config": "*", "tsup": "8.4.0", "typescript": "5.8.3" } }