Last active
April 6, 2025 07:44
-
-
Save okineadev/7d07b1d9f8604f6454f2994c08400d29 to your computer and use it in GitHub Desktop.
π¦ Dummy package.json
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"name": "some-cool-package", | |
"version": "0.8.2", | |
"description": "π A modern toolkit for building awesome things", | |
"main": "src/index.ts", | |
"type": "module", | |
"private": false, | |
"author": { | |
"name": "Example Developer", | |
"email": "[email protected]", | |
"url": "https://example.com" | |
}, | |
"license": "MIT", | |
"homepage": "https://github.com/example/some-cool-package", | |
"bugs": { | |
"url": "https://github.com/example/some-cool-package/issues", | |
"email": "[email protected]" | |
}, | |
"repository": { | |
"type": "git", | |
"url": "git+https://github.com/example/some-cool-package.git" | |
}, | |
"keywords": ["cool", "awesome", "toolkit", "typescript", "modern", "bun"], | |
"scripts": { | |
"test": "bun test", | |
"start": "bun run src/index.ts", | |
"check": "biome check .", | |
"format": "biome format ." | |
}, | |
"dependencies": { | |
"react": "^18.2.0" | |
}, | |
"devDependencies": { | |
"@biomejs/biome": "1.4.1", | |
"bun-types": "latest" | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment