Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jaid/dead-by-daylight
Some structured Dead by Daylight data.
https://github.com/jaid/dead-by-daylight
add-ons data dataset dbd dead-by-daylight directory items json killers lib library perks survivors
Last synced: 11 days ago
JSON representation
Some structured Dead by Daylight data.
- Host: GitHub
- URL: https://github.com/jaid/dead-by-daylight
- Owner: Jaid
- License: mit
- Created: 2020-01-23T12:35:01.000Z (almost 5 years ago)
- Default Branch: main
- Last Pushed: 2023-03-04T08:31:54.000Z (almost 2 years ago)
- Last Synced: 2024-12-19T14:36:58.613Z (17 days ago)
- Topics: add-ons, data, dataset, dbd, dead-by-daylight, directory, items, json, killers, lib, library, perks, survivors
- Language: JavaScript
- Homepage: https://github.com/Jaid/dead-by-daylight
- Size: 6.56 MB
- Stars: 7
- Watchers: 3
- Forks: 0
- Open Issues: 10
-
Metadata Files:
- Readme: readme.md
- Funding: .github/funding.yml
- License: license.txt
Awesome Lists containing this project
README
# dead-by-daylight
**Some structured Dead by Daylight data.**
## Installation
```bash
npm install --save dead-by-daylight@^1.30.0
``````bash
yarn add dead-by-daylight@^1.30.0
```
(if [configured properly](https://help.github.com/en/github/managing-packages-with-github-packages/configuring-npm-for-use-with-github-packages))```bash
npm install --save @jaid/dead-by-daylight@^1.30.0
```## Example
```javascript
import deadByDaylight from "dead-by-daylight"const result = deadByDaylight.perks.hauntedGround
```Variable `result` will be:
```javascript
{
id: "hauntedGround",
title: "Hex: Haunted Ground",
iconId: "hauntedGround",
owner: "spirit",
rarity: "veryRare",
for: "killer",
level: 35,
iconPath: "UI/Icons/Perks/Haiti/iconPerks_hauntedGround.png",
visible: true,
released: true,
}
```## Legal
Contains official Dead by Daylight content copied from the [Steam release](https://store.steampowered.com/app/381210). Copyright by [Behaviour Interactive](https://bhvr.com/).
## Development
Setting up:
```bash
git clone [email protected]:jaid/dead-by-daylight.git
cd dead-by-daylight
npm install
```
Testing:
```bash
npm run test:dev
```
Testing in production environment:
```bash
npm run test
```## License
[MIT License](https://raw.githubusercontent.com/jaid/dead-by-daylight/master/license.txt)
Copyright © 2020, Jaid \ (https://github.com/jaid)