rage-framework-rpc/package.json

37 lines
1012 B
JSON
Raw Normal View History

2018-11-01 12:50:33 +00:00
{
2018-11-01 19:05:48 +00:00
"name": "rage-rpc",
2019-03-09 22:22:57 +00:00
"version": "0.2.1",
2018-11-01 19:05:48 +00:00
"description": "An asynchronous RPC implementation for RAGE Multiplayer",
2018-11-02 05:10:24 +00:00
"main": "dist/rage-rpc.min.js",
2019-01-10 23:57:44 +00:00
"types": "dist/rage-rpc.d.ts",
2018-11-01 12:50:33 +00:00
"scripts": {
"watch": "webpack-cli --config ./webpack.config.js --mode=development --watch",
"build": "webpack-cli --config ./webpack.config.js --mode=production",
2019-01-10 23:57:44 +00:00
"type-check": "tsc"
2018-11-01 12:50:33 +00:00
},
2019-01-12 18:09:46 +00:00
"files": [
"dist"
],
2018-11-01 12:50:33 +00:00
"repository": {
"type": "git",
2018-11-01 19:05:48 +00:00
"url": "git+https://github.com/micaww/rage-rpc.git"
2018-11-01 12:50:33 +00:00
},
"author": "micaww",
"license": "ISC",
"bugs": {
2018-11-01 19:05:48 +00:00
"url": "https://github.com/micaww/rage-rpc/issues"
2018-11-01 12:50:33 +00:00
},
2018-11-01 19:05:48 +00:00
"homepage": "https://github.com/micaww/rage-rpc#readme",
2018-11-02 05:10:24 +00:00
"dependencies": {},
"devDependencies": {
2019-03-06 16:42:46 +00:00
"@babel/core": "^7.3.4",
"@babel/preset-env": "^7.3.4",
"@babel/preset-typescript": "^7.3.3",
2019-01-10 23:57:44 +00:00
"babel-loader": "^8.0.5",
2019-02-03 01:46:00 +00:00
"replace-in-file-webpack-plugin": "^1.0.6",
2019-03-06 16:42:46 +00:00
"typescript": "^3.3.3333",
"webpack": "^4.29.6",
2019-02-11 05:07:13 +00:00
"webpack-cli": "^3.2.3"
2018-11-02 05:10:24 +00:00
}
2018-11-01 12:50:33 +00:00
}