about summary refs log tree commit diff stats
path: root/js/baba-yaga/package.json
blob: cc244e21930f7856502f158118879ac1ae7d7bfb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
{
  "name": "baba-yaga",
  "version": "2.0.0",
  "description": "A functional programming language with high-performance engine",
  "main": "index.js",
  "module": "index.js",
  "type": "module",
  "scripts": {
    "run": "bun run index.js example.baba",
    "bun:run": "bun run index.js example.baba",
    "node:run": "node index.js example.baba",
    "debug": "bun run index.js example.baba --debug",
    "profile": "bun run index.js example.baba --profile",
    "legacy": "bun run index.js example.baba --legacy",
    "repl": "node repl.js",
    "bun:repl": "bun run repl.js",
    "benchmark": "bun run src/benchmarks/simple-benchmark.js",
    "benchmark:full": "bun run src/benchmarks/benchmark-suite.js",
    "build": "bun run build.js",
    "build:all": "bun run build.js --all",
    "build:linux": "bun run build.js --target=linux-x64",
    "build:windows": "bun run build.js --target=windows-x64", 
    "build:macos-intel": "bun run build.js --target=macos-x64",
    "build:macos-arm": "bun run build.js --target=macos-arm64",
    "build:clean": "rm -rf build/",
    "build:help": "bun run build.js --help",
    "install:binaries": "cp build/baba-yaga* /usr/local/bin/ 2>/dev/null || echo 'Run with sudo to install globally'"
  },
  "devDependencies": {
    "@types/bun": "latest"
  },
  "peerDependencies": {
    "typescript": "^5.0.0"
  },
  "dependencies": {
    "codemirror": "^5.65.16"
  }
}