bebop-tools
Version:
Bebop compiler for Node projects.
37 lines (36 loc) • 1.02 kB
JSON
{
"name": "bebop-tools",
"version": "3.1.3",
"description": "Bebop compiler for Node projects.",
"main": "dist/index.js",
"repository": "https://github.com/RainwayApp/bebop",
"author": "The Bebop Authors",
"license": "Apache-2.0",
"private": false,
"keywords": [
"bebop",
"binary",
"serialization",
"compiler"
],
"scripts": {
"build": "esbuild lib/index.ts --bundle --platform=node --outdir=dist --external:*.node",
"watch": "esbuild lib/index.ts --bundle --platform=node --outdir=dist --external:*.node --watch",
"prepack": "yarn build",
"prepare": "yarn build",
"start": "node ./dist/index.js",
"install": "test -f ./dist/index.js && node ./dist/index.js install || echo 'index.js not found, skipping install script'"
},
"bin": {
"bebopc": "dist/index.js"
},
"dependencies": {
"wasi-js": "^1.7.3"
},
"devDependencies": {
"@types/node": "^20.3.1",
"esbuild": "^0.19.11",
"ts-node": "^9.1.1",
"typescript": "^5.1.3"
}
}