dal/package.json
Anton Nesterov 60d213f21c
[chore] format ts
Signed-off-by: Anton Nesterov <anton@demiurg.io>
2024-08-15 15:04:44 +02:00

22 lines
454 B
JSON

{
"name": "dal",
"module": "dal/index.ts",
"type": "module",
"devDependencies": {
"@types/bun": "latest",
"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 ."
}
}