rage-framework-example/package.json

30 lines
959 B
JSON
Raw Normal View History

2024-06-12 22:59:21 +00:00
{
"name": "framework-example",
"version": "0.1.0",
"author": "Entity Seven Group",
"license": "CC BY-ND",
"description": "This project is example of RAGE FW usage.",
"scripts": {
"server:update": "cd server && rage-win64.exe",
2024-10-03 11:56:21 +00:00
"i:client": "cd apps/client && pnpm i rpc",
"i:server": "cd apps/server && pnpm i rpc",
"i:cef": "cd apps/cef && pnpm i rpc",
"i:all": "pnpm i:client && pnpm i:server && pnpm i:cef",
2024-06-12 22:59:21 +00:00
"build:client": "cd apps/client && pnpm build",
"build:server": "cd apps/server && pnpm build",
"build:cef": "cd apps/cef && pnpm build",
"build:all": "pnpm build:client && pnpm build:server && pnpm build:cef"
},
"devDependencies": {
"@ragempcommunity/types-client": "^2.1.8",
"@ragempcommunity/types-server": "^2.1.8",
"@ragempcommunity/types-cef": "^2.1.8",
"rage-fw-shared-types": "latest",
"esbuild": "^0.21.5",
2024-06-13 16:45:40 +00:00
"typescript": "^5.4.5",
"prettier": "^3.3.2"
2024-06-12 22:59:21 +00:00
}
}