Files
ts-lib-boilerplate/package.json
dependabot[bot] c84f01ce2c build(deps-dev): bump tsup from 8.0.1 to 8.2.4 (#15)
Bumps [tsup](https://github.com/egoist/tsup) from 8.0.1 to 8.2.4.
- [Release notes](https://github.com/egoist/tsup/releases)
- [Changelog](https://github.com/egoist/tsup/blob/dev/.releaserc.json)
- [Commits](https://github.com/egoist/tsup/compare/v8.0.1...v8.2.4)

---
updated-dependencies:
- dependency-name: tsup
  dependency-type: direct:development
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-09-21 20:33:04 +02:00

37 lines
849 B
JSON

{
"name": "typescript-lib-init",
"version": "1.0.0",
"scripts": {
"test": "vitest run",
"build": "tsup",
"dev": "tsup --watch"
},
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"require": "./dist/index.js",
"import": "./dist/index.mjs",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist",
"README.md",
"LICENSE",
"package.json"
],
"repository": "https://github.com/SrIzan10/ts-lib-boilerplate.git",
"author": "Izan Gil <66965250+SrIzan10@users.noreply.github.com>",
"license": "MIT",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^6.20.0",
"@typescript-eslint/parser": "^6.20.0",
"eslint": "^8.56.0",
"tsup": "^8.2.4",
"typescript": "^5.3.3",
"vitest": "^1.2.2"
}
}