{ "name": "test-pkg", "type": "module", "version": "0.0.0-alpha.0", "packageManager": "pnpm@9.1.0", "description": "", "author": "Brendan Dash (https://aiwan.run)", "license": "MIT", "homepage": "https://github.com/Debbl/starter-ts#readme", "repository": { "type": "git", "url": "git+https://github.com/Debbl/starter-ts.git" }, "bugs": "https://github.com/Debbl/starter-ts/issues", "keywords": [], "exports": { ".": { "types": "./dist/index.d.ts", "import": "./dist/index.mjs", "require": "./dist/index.cjs" } }, "main": "./dist/index.mjs", "module": "./dist/index.mjs", "types": "./dist/index.d.ts", "typesVersions": { "*": { "*": [ "./dist/*", "./dist/index.d.ts" ] } }, "files": [ "dist" ], "scripts": { "dev": "pnpm build && node ./dist/index.cjs", "build": "rimraf dist && rollup -c --configPlugin typescript", "test": "vitest", "typecheck": "tsc --noEmit", "lint": "eslint .", "lint:fix": "eslint . --fix", "release": "bumpp && pnpm publish", "prepare": "simple-git-hooks" }, "devDependencies": { "@debbl/eslint-config": "^3.1.3", "@rollup/plugin-commonjs": "^25.0.7", "@rollup/plugin-node-resolve": "^15.2.3", "@rollup/plugin-typescript": "^11.1.6", "@types/node": "^20.12.10", "bumpp": "^9.4.1", "eslint": "^8.57.0", "lint-staged": "^15.2.2", "rimraf": "^5.0.5", "rollup": "^4.17.2", "rollup-plugin-dts": "^6.1.0", "simple-git-hooks": "^2.11.1", "typescript": "^5.4.5", "vitest": "^1.6.0" }, "simple-git-hooks": { "pre-commit": "pnpm lint-staged" }, "lint-staged": { "*": "eslint --fix" } }