mirror of
https://github.com/ByteAtATime/raycast-linux.git
synced 2025-12-23 10:11:57 +00:00
19 lines
426 B
JSON
19 lines
426 B
JSON
{
|
|
"name": "renderer",
|
|
"module": "src/index.ts",
|
|
"type": "module",
|
|
"private": true,
|
|
"scripts": {
|
|
"watch": "bun build src/index.ts --target=node --minify --watch --outdir=dist",
|
|
"build": "bun build src/index.ts --target=node --minify --outdir=dist"
|
|
},
|
|
"devDependencies": {
|
|
"@types/bun": "latest"
|
|
},
|
|
"peerDependencies": {
|
|
"typescript": "^5"
|
|
},
|
|
"dependencies": {
|
|
"react": "^19.2.0"
|
|
}
|
|
}
|