Skip to content

Commit

Permalink
Merge branch 'main' into beta
Browse files Browse the repository at this point in the history
  • Loading branch information
JoelBCarter committed May 22, 2024
2 parents f55fc95 + 126a888 commit 87847a0
Showing 1 changed file with 21 additions and 15 deletions.
36 changes: 21 additions & 15 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,23 +7,24 @@
"version": "2.0.96",
"description": "XYO Automation Witness",
"sideeffects": false,
"engines": {
"node": ">=18 <19"
},
"esm5": "dist/esm/index.js",
"exports": {
".": {
"esm5": "./dist/esm/index.js",
"node": {
"import": "./dist/cjs/index.js",
"require": "./dist/cjs/index.js"
},
"default": "./dist/esm/index.js"
"import": {
"types": "./dist/node/index.d.mts",
"default": "./dist/node/index.mjs"
},
"require": {
"types": "./dist/node/index.d.cts",
"default": "./dist/node/index.js"
}
}
},
"./package.json": "./package.json"
},
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"main": "dist/node/index.js",
"module": "dist/node/index.mjs",
"types": "dist/node/index.d.ts",
"scripts": {
"start": "nodemon",
"launch": "node --max-old-space-size=8192 --experimental-specifier-resolution=node ./dist/cjs/index.js",
Expand Down Expand Up @@ -69,9 +70,14 @@
"ts-node": "^10.9.2",
"typescript": "^5.4.5"
},
"packageManager": "[email protected]",
"packageManager": "[email protected]",
"private": true,
"engines": {
"node": ">=20.10.0 <21"
},
"volta": {
"node": "18.13.0",
"yarn": "1.22.19"
}
"node": "20.10.0",
"yarn": "4.1.1"
},
"type": "commonjs"
}

0 comments on commit 87847a0

Please sign in to comment.