Move frontend into front end folder. Add build stuff to proto file. Finaly figured out the Vue bullshit.

This commit is contained in:
iamBadgers
2025-06-10 23:31:54 -07:00
parent 4f126594e5
commit 8d9bfa3fe0
45 changed files with 2231 additions and 291 deletions

22
proto/package.json Normal file
View File

@@ -0,0 +1,22 @@
{
"name": "proto",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"build": "npx protoc --ts_out=server_grpc1:./ --proto_path ./ ./*.proto"
},
"author": "",
"license": "ISC",
"description": "",
"devDependencies": {
"@types/google-protobuf": "^3.15.12",
"grpc_tools_node_protoc_ts": "^5.3.3",
"grpc-tools": "^1.13.0",
"ts-node": "^10.9.2",
"typescript": "^5.8.3"
},
"dependencies": {
"@grpc/grpc-js": "^1.13.4",
"@protobuf-ts/plugin": "^2.11.0"
}
}