Merge pull request #11 from kennethnym/fix/core-package-json-paths

fix(core): correct main and types paths in package.json
This commit is contained in:
2026-01-19 00:29:50 +00:00
committed by GitHub

View File

@@ -2,8 +2,8 @@
"name": "@aris/core",
"version": "0.0.0",
"type": "module",
"main": "index.ts",
"types": "index.ts",
"main": "src/index.ts",
"types": "src/index.ts",
"scripts": {
"test": "bun test ."
}