PackwizJS/package.json

51 lines
1.2 KiB
JSON
Raw Normal View History

2025-02-07 22:49:49 -06:00
{
"name": "packwizjs",
2025-02-09 10:02:50 -06:00
"module": "src/parser.ts",
2025-02-09 17:31:22 -06:00
"version": "1.0.1",
2025-02-07 22:49:49 -06:00
"type": "module",
2025-02-09 16:50:27 -06:00
"description": "A simple library for parsing Packwiz TOML files",
"author": {
"name": "cswimr",
"email": "seaswimmerthefsh@gmail.com"
},
"repository": {
"url": "https://c.csw.im/GalacticFactory/PackwizJS",
"type": "git",
"directory": "src"
},
"license": "MIT",
"files": [
"src"
],
"readme": "README.md",
"homepage": "https://packwizjs.csw.im",
"keywords": [
"packwiz",
"minecraft"
],
2025-02-09 10:00:02 -06:00
"scripts": {
2025-02-09 16:50:27 -06:00
"docs": "typedoc --options typedoc.json",
"format": "prettier --write '**/*.{ts,json,md}'"
2025-02-09 10:00:02 -06:00
},
2025-02-07 22:49:49 -06:00
"devDependencies": {
"@getmeli/cli": "1.2.0",
2025-02-07 22:49:49 -06:00
"@types/bun": "latest",
2025-02-09 16:15:10 -06:00
"@typhonjs-typedoc/ts-lib-docs": "^2024.12.25",
"@typhonjs-typedoc/typedoc-theme-dmt": "0.3.1",
2025-02-08 12:51:12 +00:00
"eslint": "9.20.0",
2025-02-09 10:00:02 -06:00
"eslint-config-standard": "17.1.0",
2025-02-09 16:50:27 -06:00
"prettier": "^3.5.0",
Update dependency typedoc to v0.27.7 (#6) This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [typedoc](https://typedoc.org) ([source](https://github.com/TypeStrong/TypeDoc)) | devDependencies | patch | [`0.27.6` -> `0.27.7`](https://renovatebot.com/diffs/npm/typedoc/0.27.6/0.27.7) | --- ### Release Notes <details> <summary>TypeStrong/TypeDoc (typedoc)</summary> ### [`v0.27.7`](https://github.com/TypeStrong/TypeDoc/blob/HEAD/CHANGELOG.md#v0277-2025-02-09) [Compare Source](https://github.com/TypeStrong/TypeDoc/compare/v0.27.6...v0.27.7) ##### Features - `@includeCode` and `@inline` can now inject parts of files using region names or line numbers, [#&#8203;2816](https://github.com/TypeStrong/TypeDoc/issues/2816). - Introduced `ja` translation options, deprecated `jp` in favor of `ja`, [#&#8203;2843](https://github.com/TypeStrong/TypeDoc/issues/2843). - Improved TypeDoc's `--watch` option to support watching files not caught by TypeScript's watch mode, [#&#8203;2675](https://github.com/TypeStrong/TypeDoc/issues/2675). - The `@inline` tag now works in more places for generic types. - Visibility filters now consider individual signatures, [#&#8203;2846](https://github.com/TypeStrong/TypeDoc/issues/2846). ##### Bug Fixes - Fixed an issue where TypeDoc would incorrectly ignore type arguments in references, [#&#8203;2823](https://github.com/TypeStrong/TypeDoc/issues/2823). - Improved narrator support for labeling icons, [#&#8203;2832](https://github.com/TypeStrong/TypeDoc/issues/2832). - Fixed an issue with `@class` incorrectly handling mapped types, [#&#8203;2842](https://github.com/TypeStrong/TypeDoc/issues/2842). - TypeDoc will now consider symbols to be external only if all of their declarations are external so that declaration merged members with global symbols can be documented, [#&#8203;2844](https://github.com/TypeStrong/TypeDoc/issues/2844). - Fixed an issue where TypeDoc would constantly rebuild, [#&#8203;2844](https://github.com/TypeStrong/TypeDoc/issues/2844). - Fixed an issue where the dropdown arrow in the index group would not respect the state of the dropdown, [#&#8203;2845](https://github.com/TypeStrong/TypeDoc/issues/2845). ##### Thanks! - [@&#8203;pjeby](https://github.com/pjeby) - [@&#8203;shawninder](https://github.com/shawninder) - [@&#8203;tats-u](https://github.com/tats-u) - [@&#8203;XeroAlpha](https://github.com/XeroAlpha) </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS4xNjMuMCIsInVwZGF0ZWRJblZlciI6IjM5LjE2My4wIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6W119--> Reviewed-on: https://www.coastalcommits.com/GalacticFactory/PackwizJS/pulls/6 Co-authored-by: Renovate <renovate@coastalcommits.com> Co-committed-by: Renovate <renovate@coastalcommits.com>
2025-02-09 15:01:01 -05:00
"typedoc": "0.27.7",
2025-02-09 14:37:45 -06:00
"typedoc-plugin-coverage": "3.4.1",
2025-02-09 16:15:10 -06:00
"typedoc-plugin-markdown": "4.4.1"
2025-02-07 22:49:49 -06:00
},
"peerDependencies": {
"typescript": "^5.0.0"
},
"dependencies": {
"@types/semver": "^7.5.8",
"semver": "^7.7.1",
2025-02-07 22:49:49 -06:00
"toml": "^3.0.0"
}
}