dal/package.json
2024-08-29 21:10:29 +02:00

34 lines
893 B
JSON

{
"name": "@nesterow/dal",
"version": "0.0.2",
"repository": "https://l12.xyz/x/dal.git",
"publishConfig": {
"registry": "https://npm.pkg.github.com"
},
"module": "dist/index.js",
"type": "module",
"devDependencies": {
"@types/bun": "latest",
"prettier": "^3.3.3"
},
"peerDependencies": {
"typescript": "^5.0.0"
},
"dependencies": {
"@msgpack/msgpack": "^3.0.0-beta2",
"node-addon-api": "^8.1.0",
"node-gyp": "^10.2.0"
},
"scripts": {
"test:client": "bun test:*",
"test:dal": "bun test dal/__test__",
"test:serve": "cd dal/__test__/srv && go run main.go",
"bench:node": "node ./dal/__test__/bench.node.cjs",
"fmt": "prettier --write .",
"build": "tsc",
"prepublish": "tsc",
"preinstall": "cd binding && go build -buildmode=c-archive -o dal.a ./dal.go",
"postinstall": "node-gyp configure build"
}
}