|
| 1 | +{ |
| 2 | + "name": "react-components-starter", |
| 3 | + "version": "0.0.0", |
| 4 | + "description": "A starter for creating a React component library.", |
| 5 | + "type": "module", |
| 6 | + "license": "MIT", |
| 7 | + "homepage": "https://github.com/author/library#readme", |
| 8 | + "bugs": { |
| 9 | + "url": "https://github.com/author/library/issues" |
| 10 | + }, |
| 11 | + "repository": { |
| 12 | + "type": "git", |
| 13 | + "url": "git+https://github.com/author/library.git" |
| 14 | + }, |
| 15 | + "author": "Author Name <[email protected]>", |
| 16 | + "files": [ |
| 17 | + "dist" |
| 18 | + ], |
| 19 | + "main": "./dist/index.js", |
| 20 | + "module": "./dist/index.js", |
| 21 | + "types": "./dist/index.d.ts", |
| 22 | + "exports": { |
| 23 | + ".": "./dist/index.js", |
| 24 | + "./package.json": "./package.json" |
| 25 | + }, |
| 26 | + "publishConfig": { |
| 27 | + "access": "public" |
| 28 | + }, |
| 29 | + "scripts": { |
| 30 | + "build": "tsdown", |
| 31 | + "dev": "tsdown --watch", |
| 32 | + "playground": "vite --config playground/vite.config.ts", |
| 33 | + "test": "vitest", |
| 34 | + "typecheck": "tsc --noEmit", |
| 35 | + "release": "bumpp && pnpm publish", |
| 36 | + "prepublishOnly": "pnpm run build" |
| 37 | + }, |
| 38 | + "devDependencies": { |
| 39 | + "@testing-library/jest-dom": "^6.6.3", |
| 40 | + "@testing-library/react": "^16.3.0", |
| 41 | + "@types/node": "^22.15.17", |
| 42 | + "@types/react": "^19.1.3", |
| 43 | + "@types/react-dom": "^19.1.4", |
| 44 | + "@vitejs/plugin-react": "^4.4.1", |
| 45 | + "bumpp": "^10.1.0", |
| 46 | + "happy-dom": "^17.4.6", |
| 47 | + "react": "^19.1.0", |
| 48 | + "react-dom": "^19.1.0", |
| 49 | + "tsdown": "^0.11.1", |
| 50 | + "typescript": "^5.8.3", |
| 51 | + "vite": "npm:rolldown-vite@latest", |
| 52 | + "vitest": "^3.1.3", |
| 53 | + "zephyr-rolldown-plugin": "^0.1.0-next.1" |
| 54 | + } |
| 55 | +} |
0 commit comments