dal/package.json

26 lines
638 B
JSON
Raw Normal View History

{
"name": "dal",
"module": "dal/index.ts",
"type": "module",
"devDependencies": {
"@types/bun": "latest",
"node-addon-api": "^8.1.0",
"node-gyp": "^10.2.0",
"prettier": "^3.3.3"
},
"peerDependencies": {
"typescript": "^5.0.0"
},
"dependencies": {
"@msgpack/msgpack": "^3.0.0-beta2"
},
"scripts": {
"test:client": "bun test:*",
"test:dal": "bun test dal/__test__",
"test:serve": "cd dal/__test__/srv && go run main.go",
"fmt": "prettier --write .",
"cgo:prepare":"cd cgo && go build -buildmode=c-archive -o dal.a ./dal.go",
"cgo:build": "node-gyp configure build"
}
}