PackwizJS/package.json
2025-02-10 05:26:57 -06:00

50 lines
1.2 KiB
JSON

{
"name": "packwizjs",
"module": "src/parser.ts",
"version": "1.0.1",
"type": "module",
"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"
],
"scripts": {
"docs": "typedoc --options typedoc.json",
"format": "bun prettier --write '**/*.{ts,json,md}'"
},
"devDependencies": {
"@getmeli/cli": "1.2.0",
"@types/bun": "latest",
"@typhonjs-typedoc/ts-lib-docs": "^2024.12.25",
"@typhonjs-typedoc/typedoc-theme-dmt": "0.3.1",
"eslint": "9.20.0",
"eslint-config-standard": "17.1.0",
"prettier": "^3.5.0",
"typedoc": "0.27.7",
"typedoc-plugin-coverage": "3.4.1",
"typedoc-plugin-markdown": "4.4.1"
},
"peerDependencies": {
"typescript": "^5.0.0"
},
"dependencies": {
"@types/semver": "^7.5.8",
"semver": "^7.7.1",
"toml": "^3.0.0"
}
}