Skip to content

Commit

Permalink
chore: update package configuration and exports
Browse files Browse the repository at this point in the history
  • Loading branch information
m2rads committed Oct 31, 2024
1 parent dc07aaf commit e077bef
Show file tree
Hide file tree
Showing 2 changed files with 800 additions and 21 deletions.
15 changes: 13 additions & 2 deletions packages/shortest/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@
"version": "0.0.1",
"description": "AI-powered testing framework",
"type": "module",
"bin": {
"shortest": "dist/cli/bin.js"
},
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
Expand All @@ -17,10 +20,18 @@
"dist"
],
"scripts": {
"build": "tsup src/index.ts --format cjs,esm --dts --sourcemap",
"dev": "tsup src/index.ts --format cjs,esm --dts --sourcemap --watch"
"build": "tsup",
"dev": "tsup --watch",
"prepare": "chmod +x dist/cli/bin.js"
},
"dependencies": {
"chokidar": "^3.5.3",
"glob": "^10.3.10",
"picocolors": "^1.0.0",
"esbuild": "^0.20.1"
},
"devDependencies": {
"@types/node": "^20.11.24",
"typescript": "~5.6.2",
"tsup": "^8.0.0"
}
Expand Down
Loading

0 comments on commit e077bef

Please sign in to comment.