Initial commit

This commit is contained in:
2023-03-23 00:48:09 +01:00
commit 4e08ef5747
12 changed files with 4027 additions and 0 deletions
+28
View File
@@ -0,0 +1,28 @@
{
"type": "module",
"name": "ppp2-client",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build-proto": "NODE_VERSION=19 npm_config_prefix= $HOME/.nvm/nvm-exec ./node_modules/protobufjs-cli/bin/pbjs -t=json src/protocol/protobuf/2.0/*.proto > src/protocol.json",
"dev": "NODE_ENV=development webpack watch",
"build": "NODE_ENV=production webpack",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git@git.sys36.net:windows-96/ppp2/client.git"
},
"author": "",
"license": "UNLICENSED",
"dependencies": {
"long": "^5.2.1",
"ws": "^8.13.0"
},
"devDependencies": {
"protobufjs-cli": "^1.1.1",
"webpack": "^5.76.3",
"webpack-cli": "^5.0.1"
}
}