PackwizJS/packages/parser/package.json
cswimr 28dc915498
Some checks failed
Actions / Build and Push Documentation (push) Failing after 14s
fix(parser): correct jsdoc comment
2025-02-12 01:10:59 -06:00

39 lines
764 B
JSON

{
"name": "@packwizjs/parser",
"module": "src/index.ts",
"version": "1.1.2",
"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"
},
"license": "MIT",
"files": [
"src"
],
"readme": "README.md",
"homepage": "https://packwizjs.csw.im",
"keywords": [
"packwiz",
"minecraft"
],
"scripts": {},
"peerDependencies": {
"typescript": "^5.0.0"
},
"dependencies": {
"@types/semver": "^7.5.8",
"semver": "^7.7.1",
"toml": "^3.0.0"
},
"exports": {
".": {
"import": "./src/index.ts"
}
}
}