Skip to content

Commit

Permalink
chore(types): type definition update on package.json
Browse files Browse the repository at this point in the history
* dependencies upgrade
  * prod
    * change fastify: 4.25.1 > 4.25.2
  * dev
    * change @types/node: 18.11.9 > 20.10.5
    * change @typescript-eslint/eslint-plugin: 6.10.0 > 6.16.0
    * change @typescript-eslint/parser: 6.10.0 > 6.16.0
    * change @vitest/coverage-v8: 0.34.6 > 1.1.0
    * change axios: 1.6.2 > 1.6.3
    * change ctix: 2.1.0 > 2.3.0
    * change esbuild: 0.19.5 > 0.19.10
    * change eslint: 8.53.0 > 8.56.0
    * change eslint-config-prettier: 9.0.0 > 9.1.0
    * change eslint-plugin-import: 2.29.0 > 2.29.1
    * change eslint-plugin-jsdoc: 46.9.0 > 46.9.1
    * change eslint-plugin-prettier: 5.0.1 > 5.1.2
    * change lint-staged: 15.1.0 > 15.2.0
    * change prettier: 3.1.0 > 3.1.1
    * change prettier-eslint: 16.1.2 > 16.2.0
    * change rollup: 4.4.0 > 4.9.1
    * change ts-node: 10.9.1 > 10.9.2
    * change typescript: 5.2.2 > 5.3.3
    * change vite-tsconfig-paths: 4.2.1 > 4.2.2
    * change vitest: 0.34.6 > 1.1.0
  • Loading branch information
imjuni committed Dec 27, 2023
1 parent 1be926d commit 3ff4224
Show file tree
Hide file tree
Showing 2 changed files with 557 additions and 848 deletions.
61 changes: 33 additions & 28 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@maeum/async-context",
"version": "1.0.0",
"description": "TypeScript lib boilerplate",
"description": "packages for enhance async context mechanishm",
"engines": {
"node": ">=18"
},
Expand Down Expand Up @@ -42,14 +42,19 @@
],
"author": "ByungJoon Lee",
"license": "MIT",
"main": "./dist/cjs/index.cjs",
"module": "./dist/esm/index.mjs",
"typings": "./dist/esm/index.d.mts",
"main": "dist/cjs/index.cjs",
"module": "dist/esm/index.mjs",
"types": "dist/types/index.d.ts",
"exports": {
".": {
"require": "./dist/cjs/index.cjs",
"import": "./dist/esm/index.mjs",
"typings": "./dist/esm/index.d.mts"
"require": {
"default": "./dist/cjs/index.cjs",
"types": "./dist/types/index.d.ts"
},
"import": {
"default": "./dist/esm/index.mjs",
"types": "./dist/types/index.d.ts"
}
}
},
"files": [
Expand All @@ -62,40 +67,40 @@
"devDependencies": {
"@rollup/plugin-node-resolve": "^15.2.3",
"@tsconfig/node18": "^18.2.2",
"@types/node": "^18.11.9",
"@typescript-eslint/eslint-plugin": "^6.10.0",
"@typescript-eslint/parser": "^6.10.0",
"@vitest/coverage-v8": "^0.34.6",
"axios": "^1.6.2",
"@types/node": "^20.10.5",
"@typescript-eslint/eslint-plugin": "^6.16.0",
"@typescript-eslint/parser": "^6.16.0",
"@vitest/coverage-v8": "^1.1.0",
"axios": "^1.6.3",
"cross-env": "^7.0.3",
"ctix": "^2.1.0",
"ctix": "^2.3.0",
"deps-diff": "^1.0.2",
"esbuild": "0.19.5",
"eslint": "^8.53.0",
"esbuild": "0.19.10",
"eslint": "^8.56.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.1.0",
"eslint-config-prettier": "^9.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-jsdoc": "^46.9.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsdoc": "^46.9.1",
"eslint-plugin-prefer-arrow": "^1.2.3",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-prettier": "^5.1.2",
"husky": "^8.0.3",
"lint-staged": "^15.1.0",
"lint-staged": "^15.2.0",
"npm-run-all": "^4.1.5",
"prettier": "^3.1.0",
"prettier-eslint": "^16.1.2",
"prettier": "^3.1.1",
"prettier-eslint": "^16.2.0",
"prettier-plugin-organize-imports": "^3.2.4",
"read-pkg": "^5.2.0",
"rimraf": "^5.0.5",
"rollup": "^4.4.0",
"rollup": "^4.9.1",
"rollup-plugin-dts": "^6.1.0",
"ts-node": "^10.9.1",
"ts-node": "^10.9.2",
"tsc-alias": "^1.8.8",
"tslib": "^2.5.2",
"typescript": "^5.2.2",
"vite-tsconfig-paths": "^4.2.1",
"vitest": "^0.34.6",
"typescript": "^5.3.3",
"vite-tsconfig-paths": "^4.2.2",
"vitest": "^1.1.0",
"vitest-tsconfig-paths": "^3.4.1"
},
"lint-staged": {
Expand All @@ -107,7 +112,7 @@
]
},
"dependencies": {
"fastify": "^4.25.1",
"fastify": "^4.25.2",
"fastify-plugin": "^4.5.1",
"my-easy-fp": "^0.21.0",
"type-fest": "^4.8.3"
Expand Down

0 comments on commit 3ff4224

Please sign in to comment.