├── .browserslistrc ├── public ├── favicon.ico └── index.html ├── babel.config.js ├── src ├── assets │ └── logo.png ├── styles │ ├── base.scss │ ├── variables.scss │ ├── mixins.scss │ ├── utilities.scss │ ├── page.scss │ ├── normalize.scss │ └── accessible-colors.scss ├── main.js ├── components │ └── PacketStructure.vue ├── data │ ├── 1.14d │ │ ├── client2mcps.json │ │ ├── mcps2client.json │ │ ├── sid2client.json │ │ ├── client2sid.json │ │ └── client2gs.json │ ├── 1.13c │ │ └── client2sid.json │ └── 1.15 │ │ ├── client2gs.json │ │ └── gs2client.json └── App.vue ├── vue.config.js ├── README.md ├── .gitignore ├── .eslintrc.js ├── package.json └── .github └── workflows └── main.yml /.browserslistrc: -------------------------------------------------------------------------------- 1 | > 1% 2 | last 2 versions 3 | not dead 4 | -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blizzhackers/Diablo2PacketsData/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | presets: [ 3 | '@vue/cli-plugin-babel/preset' 4 | ] 5 | } 6 | -------------------------------------------------------------------------------- /src/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blizzhackers/Diablo2PacketsData/HEAD/src/assets/logo.png -------------------------------------------------------------------------------- /vue.config.js: -------------------------------------------------------------------------------- 1 | const path = require("path"); 2 | 3 | module.exports = { 4 | outputDir: path.resolve(__dirname, "./docs"), 5 | publicPath: './', 6 | }; 7 | -------------------------------------------------------------------------------- /src/styles/base.scss: -------------------------------------------------------------------------------- 1 | @import "normalize"; 2 | @import "accessible-colors"; 3 | @import "variables"; 4 | @import "mixins"; 5 | @import "page"; 6 | @import "utilities"; 7 | -------------------------------------------------------------------------------- /src/main.js: -------------------------------------------------------------------------------- 1 | import Vue from 'vue' 2 | import App from './App.vue' 3 | 4 | Vue.config.productionTip = false 5 | 6 | new Vue({ 7 | render: h => h(App), 8 | }).$mount('#app') 9 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Diablo 2 Packets Data 2 | 3 | The main data for this repo lives in `src/data/`, so any updates to the packet data should be done there. 4 | 5 | To set up the app for local testing run `npm install` in the repo root folder (requires node.js). 6 | 7 | To locally test the app run `npm start`. 8 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules 3 | /docs 4 | 5 | # local env files 6 | .env.local 7 | .env.*.local 8 | 9 | # Log files 10 | npm-debug.log* 11 | yarn-debug.log* 12 | yarn-error.log* 13 | pnpm-debug.log* 14 | 15 | # Editor directories and files 16 | .idea 17 | .vscode 18 | *.suo 19 | *.ntvs* 20 | *.njsproj 21 | *.sln 22 | *.sw? 23 | -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | root: true, 3 | env: { 4 | node: true 5 | }, 6 | 'extends': [ 7 | 'plugin:vue/essential', 8 | 'eslint:recommended' 9 | ], 10 | parserOptions: { 11 | parser: 'babel-eslint' 12 | }, 13 | rules: { 14 | 'no-console': process.env.NODE_ENV === 'production' ? 'warn' : 'off', 15 | 'no-debugger': process.env.NODE_ENV === 'production' ? 'warn' : 'off' 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | 5 | 6 | 7 | 8 |{{ packet.Description }}
31 | 32 |