-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
version(items@0.0.1): Add Bits Item Metadata
- Loading branch information
1 parent
52b7abc
commit c619636
Showing
9 changed files
with
783 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
# @skyblock-finance/items | ||
|
||
This package contains item metadata, primarily data that is not available on the Hypixel API yet | ||
|
||
(if any Hypixel employee is reading this, please add more metadata on the items API, thank you) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
{ | ||
"bugs": { | ||
"url": "https://github.com/skyblock-finance/skyblock-finance-opensource/issues" | ||
}, | ||
"dependencies": { | ||
"zod": "^3.23.8" | ||
}, | ||
"devDependencies": { | ||
"@types/bun": "latest" | ||
}, | ||
"files": [ | ||
"data", | ||
"dist", | ||
"source" | ||
], | ||
"keywords": [ | ||
"hypixel-skyblock", | ||
"hypixel", | ||
"skyblock-finance" | ||
], | ||
"license": "MIT", | ||
"main": "dist/index.js", | ||
"name": "@skyblock-finance/items", | ||
"peerDependencies": { | ||
"typescript": "^5.5" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "git+https://github.com/skyblock-finance/skyblock-finance-opensource" | ||
}, | ||
"scripts": { | ||
"build": "rm -rf dist && tsc --build", | ||
"check:arethetypeswrong": "bun run attw --pack .", | ||
"check:eslint": "bun run eslint --max-warnings=0 .", | ||
"check:prettier": "bun --bun run --cwd ../.. prettier --check packages/items", | ||
"check:publint": "bun --bun run publint", | ||
"fix:eslint": "bun run check:eslint --fix", | ||
"fix:prettier": "bun --bun run check:prettier --write", | ||
"publish-package": "npm publish --access public --provenance", | ||
"test": "bun test" | ||
}, | ||
"sideEffects": false, | ||
"type": "commonjs", | ||
"types": "dist/index.d.ts", | ||
"version": "0.0.1" | ||
} |
Oops, something went wrong.