rage-framework
Version:
## How to Install *server-side* ```bash npm install @rage-framework/server ```
46 lines (45 loc) • 1.25 kB
JSON
{
"name": "@rage-framework/ragemp-gungame-example",
"version": "0.1.2",
"main": "dist/index",
"types": "dist/index",
"files": [
"dist"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/katalist5296/rage-framework.git",
"directory": "examples/ragemp-gungame"
},
"bugs": {
"url": "https://github.com/katalist5296/rage-framework/issues"
},
"scripts": {
"build": "npm run clean && npm run compile",
"build:watch": "tsc --watch --project tsconfig.build.json",
"clean": "rm -rf ./dist",
"compile": "webpack --mode development --config webpack.config.js",
"test": "jest --config ../../jest.config.js",
"test:watch": "jest --watchAll --config ../../jest.config.js"
},
"private": true,
"publishConfig": {
"access": "public"
},
"dependencies": {
"@rage-framework/client": "^0.1.2",
"@rage-framework/core": "^0.1.2",
"@rage-framework/server": "^0.1.2"
},
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/preset-env": "^7.12.11",
"@babel/preset-typescript": "^7.12.7",
"babel-loader": "^8.2.2",
"ts-loader": "^8.0.13",
"typescript": "^4.1.3",
"webpack": "^5.11.1",
"webpack-cli": "^4.3.1"
}
}