rage-framework-rpc/package.json

37 lines
1010 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-10-31 22:20:21 +00:00
"version": "0.3.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-10-31 22:20:21 +00:00
"@babel/core": "^7.6.4",
"@babel/preset-env": "^7.6.3",
"@babel/preset-typescript": "^7.6.0",
2019-06-02 18:47:57 +00:00
"babel-loader": "^8.0.6",
2019-02-03 01:46:00 +00:00
"replace-in-file-webpack-plugin": "^1.0.6",
2019-10-31 22:20:21 +00:00
"typescript": "^3.6.4",
"webpack": "^4.41.2",
"webpack-cli": "^3.3.10"
2018-11-02 05:10:24 +00:00
}
2018-11-01 12:50:33 +00:00
}