mirror of
https://github.com/SrIzan10/ts-lib-boilerplate.git
synced 2026-06-06 01:06:57 +00:00
Bumps [eslint](https://github.com/eslint/eslint) from 8.56.0 to 8.57.1. - [Release notes](https://github.com/eslint/eslint/releases) - [Changelog](https://github.com/eslint/eslint/blob/main/CHANGELOG.md) - [Commits](https://github.com/eslint/eslint/compare/v8.56.0...v8.57.1) --- updated-dependencies: - dependency-name: eslint dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
37 lines
848 B
JSON
37 lines
848 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": "^7.0.0",
|
|
"@typescript-eslint/parser": "^6.20.0",
|
|
"eslint": "^8.57.1",
|
|
"tsup": "^8.2.4",
|
|
"typescript": "^5.6.2",
|
|
"vitest": "^1.2.2"
|
|
}
|
|
}
|