{ "name": "@author/package", "version": "1.0.0", "description": "_desc_", "license": "MIT", "author": { "name": "_author_", "url": "https://github.com/_username_" }, "keywords": [ "typescript" ], "bugs": "https://github.com/_username_/_repository_/issues", "repository": { "type": "git", "url": "git+https://github.com/_username_/_repository_.git", "directory": "packages/pkg1" }, "publishConfig": { "access": "public" }, "type": "module", "types": "./dist/index.d.mts", "module": "./dist/index.mjs", "exports": { ".": { "types": "./dist/index.d.mts", "import": "./dist/index.mjs" } }, "files": [ "dist" ], "scripts": { "build": "tsdown", "dev": "tsdown --watch", "test": "vitest", "fmt": "oxfmt --config=./../../.oxfmtrc.jsonc", "fmt-check": "npm run fmt -- --check", "lint": "oxlint --config=./../../.oxlintrc.jsonc", "fix": "npm run lint -- --fix" } }