|
| 1 | +{ |
| 2 | + "name": "project-name-here", |
| 3 | + "version": "0.1.0", |
| 4 | + "private": true, |
| 5 | + "description": "Project description here.", |
| 6 | + "repository": { |
| 7 | + "type": "git", |
| 8 | + "url": "git+https://repository/url/here" |
| 9 | + }, |
| 10 | + "license": "project-license-here", |
| 11 | + "author": "Author Name Here <[email protected]>", |
| 12 | + "type": "module", |
| 13 | + "exports": { |
| 14 | + ".": "./dist/index.js", |
| 15 | + "./lib/add": "./dist/lib/add.js", |
| 16 | + "./package.json": "./package.json" |
| 17 | + }, |
| 18 | + "main": "./dist/index.js", |
| 19 | + "module": "./dist/index.js", |
| 20 | + "types": "./dist/index.d.ts", |
| 21 | + "files": [ |
| 22 | + "dist" |
| 23 | + ], |
| 24 | + "scripts": { |
| 25 | + "build": "tsdown", |
| 26 | + "dev": "tsdown --watch src", |
| 27 | + "format": "ultracite format", |
| 28 | + "prepare": "husky", |
| 29 | + "lint": "ultracite lint", |
| 30 | + "test": "vitest --run", |
| 31 | + "test:coverage": "vitest --run --coverage", |
| 32 | + "test:watch": "vitest", |
| 33 | + "tsc": "tsc", |
| 34 | + "tsc:watch": "tsc --watch" |
| 35 | + }, |
| 36 | + "lint-staged": { |
| 37 | + "*.{js,jsx,ts,tsx,json,jsonc,css,scss,md,mdx}": [ |
| 38 | + "pnpm ultracite format" |
| 39 | + ] |
| 40 | + }, |
| 41 | + "devDependencies": { |
| 42 | + "@biomejs/biome": "2.0.6", |
| 43 | + "@types/node": "^24.0.7", |
| 44 | + "@vitest/coverage-v8": "^3.2.4", |
| 45 | + "@vitest/ui": "^3.2.4", |
| 46 | + "husky": "^9.1.7", |
| 47 | + "lint-staged": "^16.1.2", |
| 48 | + "publint": "^0.3.12", |
| 49 | + "tsdown": "^0.12.9", |
| 50 | + "typescript": "^5.8.3", |
| 51 | + "ultracite": "^5.0.32", |
| 52 | + "unplugin-unused": "^0.5.1", |
| 53 | + "vite": "^7.0.0", |
| 54 | + "vitest": "^3.2.4" |
| 55 | + }, |
| 56 | + "packageManager": "[email protected]+sha512.5ea8b0deed94ed68691c9bad4c955492705c5eeb8a87ef86bc62c74a26b037b08ff9570f108b2e4dbd1dd1a9186fea925e527f141c648e85af45631074680184", |
| 57 | + "engines": { |
| 58 | + "node": ">=22", |
| 59 | + "pnpm": ">=10" |
| 60 | + }, |
| 61 | + "engineStrict": true |
| 62 | +} |
0 commit comments