fix(parser): declare package exports correctly
All checks were successful
Actions / Build and Push Documentation (push) Successful in 16s

This commit is contained in:
cswimr 2025-02-11 18:59:23 -06:00
parent 464435579b
commit b31af94e3d
Signed by: cswimr
GPG key ID: 0EC431A8DA8F8087

View file

@ -1,7 +1,7 @@
{
"name": "@packwizjs/parser",
"module": "src/parser.ts",
"version": "1.0.2",
"version": "1.0.3",
"type": "module",
"description": "A simple library for parsing Packwiz TOML files",
"author": {
@ -30,5 +30,10 @@
"@types/semver": "^7.5.8",
"semver": "^7.7.1",
"toml": "^3.0.0"
},
"exports": {
".": {
"import": "./src/parser.ts"
}
}
}