
Security News
US Government Forces Anthropic to Pull Claude Fable Days After Launch
Anthropic says the directive cited national security concerns over a narrow jailbreak, but offered no specific technical details.
Modern build tool for Google Apps Script development with Bun
@types/google-apps-script# Create new project
bunx bun-apps create
# Or add to existing project
bun add -d bun-apps
bunx bun-apps create
This will:
# Build TypeScript to GAS
bunx bun-apps build
# Push code to Apps Script
bunx bun-apps push
# Deploy to Apps Script
bunx bun-apps deploy
# Open project in browser
bunx bun-apps open
Input (index.ts):
function myFunction() {
Logger.log('Hello via Bun!');
}
export { myFunction };
Output (dist/Code.gs):
function myFunction() {
Logger.log('Hello via Bun!');
}
your-project/
├── index.ts # Entry point
├── public/
│ └── appsscript.json # GAS configuration
├── dist/
│ ├── Code.gs # Built output
│ └── appsscript.json # Copied configuration
├── package.json
└── tsconfig.json
buildGAS(options)Build TypeScript code for Google Apps Script.
import { buildGAS } from 'bun-apps';
await buildGAS({
srcDir: '.',
distDir: './dist',
publicDir: './public',
entryFile: './index.ts',
outputFile: './dist/Code.gs',
packageJsonPath: './package.json',
minify: false,
});
| Option | Type | Description |
|---|---|---|
srcDir | string | Source directory |
distDir | string | Output directory |
publicDir | string | Public assets directory (optional) |
entryFile | string | Entry point file |
outputFile | string | Output file path |
packageJsonPath | string | Path to package.json |
minify | boolean | Enable minification (default: false) |
See CONTRIBUTING.md for development guidelines.
MIT
FAQs
Modern build tool for Google Apps Script development with Bun
We found that bun-apps demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Anthropic says the directive cited national security concerns over a narrow jailbreak, but offered no specific technical details.

Security News
A network of 152 Chrome live wallpaper extensions hid ad tracking and made extension-driven traffic look like Google search clicks.

Company News
Socket’s first CISO brings deep experience securing high-growth SaaS companies as open source supply chain threats accelerate.