File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11{
2+ "packages/bun-decompile" : " 0.1.0" ,
23 "packages/dagger-utils" : " 0.5.0" ,
34 "packages/eslint-config" : " 0.2.0"
45}
Original file line number Diff line number Diff line change @@ -21,7 +21,8 @@ bun add @shepherdjerred/bun-decompile
2121bun add -g @shepherdjerred/bun-decompile
2222```
2323
24- Requires [ Bun] ( https://bun.sh ) runtime.
24+ > ** Note:** This package requires [ Bun] ( https://bun.sh ) runtime and will not work with Node.js.
25+ > It uses Bun-specific APIs (` Bun.file() ` , ` Bun.write() ` ) for file operations.
2526
2627## Quick Start
2728
Original file line number Diff line number Diff line change 11{
22 "name" : " @shepherdjerred/bun-decompile" ,
33 "version" : " 0.1.0" ,
4+ "description" : " Extract and de-minify source code from Bun-compiled executables using AI (Bun runtime required)" ,
45 "type" : " module" ,
56 "bin" : {
67 "bun-decompile" : " ./src/index.ts"
78 },
89 "exports" : {
910 "." : " ./src/lib/index.ts"
1011 },
12+ "files" : [
13+ " src" ,
14+ " README.md" ,
15+ " LICENSE"
16+ ],
17+ "keywords" : [
18+ " bun" ,
19+ " decompile" ,
20+ " decompiler" ,
21+ " deminify" ,
22+ " reverse-engineering" ,
23+ " sourcemap" ,
24+ " ai" ,
25+ " claude" ,
26+ " openai"
27+ ],
28+ "author" : " Jerred Shepherd" ,
29+ "license" : " GPL-3.0" ,
30+ "repository" : {
31+ "type" : " git" ,
32+ "url" : " git+https://github.com/shepherdjerred/monorepo.git" ,
33+ "directory" : " packages/bun-decompile"
34+ },
35+ "homepage" : " https://github.com/shepherdjerred/monorepo/tree/main/packages/bun-decompile#readme" ,
36+ "bugs" : {
37+ "url" : " https://github.com/shepherdjerred/monorepo/issues"
38+ },
39+ "engines" : {
40+ "bun" : " >=1.0.0"
41+ },
1142 "scripts" : {
43+ "build" : " true" ,
1244 "test" : " bun test" ,
13- "typecheck" : " tsc --noEmit"
45+ "typecheck" : " tsc --noEmit" ,
46+ "prepublishOnly" : " bun run typecheck"
1447 },
1548 "dependencies" : {
1649 "@anthropic-ai/sdk" : " ^0.52.0" ,
Original file line number Diff line number Diff line change 11{
22 "$schema" : " https://raw.githubusercontent.com/googleapis/release-please/main/schemas/config.json" ,
33 "packages" : {
4+ "packages/bun-decompile" : {
5+ "release-type" : " node" ,
6+ "package-name" : " @shepherdjerred/bun-decompile"
7+ },
48 "packages/dagger-utils" : {
59 "release-type" : " node" ,
610 "package-name" : " @shepherdjerred/dagger-utils"
You can’t perform that action at this time.
0 commit comments