Skip to content

Instantly share code, notes, and snippets.

@okineadev
Last active April 6, 2025 07:44
Show Gist options
  • Save okineadev/7d07b1d9f8604f6454f2994c08400d29 to your computer and use it in GitHub Desktop.
Save okineadev/7d07b1d9f8604f6454f2994c08400d29 to your computer and use it in GitHub Desktop.
πŸ“¦ Dummy package.json
{
"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