Add in some config files to holpefully kick off working with proto / grpc.

This commit is contained in:
iamBadgers
2025-07-29 19:52:51 -07:00
parent 2d59048a5e
commit d66c671a91
4 changed files with 1105 additions and 0 deletions

21
package.json Normal file
View File

@@ -0,0 +1,21 @@
{
"name": "foundry-module-ts",
"version": "1.0.0",
"description": "A template project for FoundryVTT modules using TypeScript",
"license": "MIT",
"private": true,
"scripts": {
"build": "tsc && vite build"
},
"devDependencies": {
"rollup-plugin-copy": "^3.5.0",
"typescript": "^5.8.3",
"vite": "^7.0.6"
},
"dependencies": {
"@league-of-foundry-developers/foundry-vtt-types": "^9.280.0",
"@protobuf-ts/grpcweb-transport": "^2.11.1",
"@protobuf-ts/plugin": "^2.11.1",
"@types/google-protobuf": "^3.15.12"
}
}