-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
20 lines (20 loc) · 796 Bytes
/
package.json
File metadata and controls
20 lines (20 loc) · 796 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{
"name": "say2file",
"version": "3.1.60127",
"main": "say2file.js",
"scripts": {
"dev": "bun say2file.js Hello there, this is Paul.",
"test": "bun say2file.js -f sample.txt -s",
"start": "bun say2file.js",
"build:linux": "bun build --compile --target=bun-linux-x64 say2file.js --outfile say2file",
"build:win": "bun build --compile --target=bun-windows-x64 say2file.js --outfile say2file.exe",
"build:mac-x64": "bun build --compile --target=bun-darwin-x64 say2file.js --outfile say2file-macos-x64",
"build:mac-arm64": "bun build --compile --target=bun-darwin-arm64 say2file.js --outfile say2file-macos-arm64"
},
"author": "Paul Whittemore <dev@appurist.com>",
"license": "MIT",
"dependencies": {
"arg": "^5.0.2",
"async-mutex": "^0.5.0"
}
}