chore: update deps

This commit is contained in:
2024-07-21 22:44:10 +03:00
parent 8d4f6959e8
commit 314ac0b6d2
8 changed files with 1116 additions and 73 deletions

View File

@@ -3,6 +3,7 @@ tab_width = 2
indent_size = 2 indent_size = 2
indent_style = space indent_style = space
insert_final_newline = true insert_final_newline = true
trim_trailing_whitespace = true
[*.md] [*.md]
trim_trailing_whitespace = false trim_trailing_whitespace = false

View File

@@ -1,2 +1 @@
templates/ gen/
scaffolds/

View File

@@ -1,6 +1,6 @@
{ {
"printWidth": 100, "printWidth": 100,
"semi": true, "semi": false,
"singleQuote": true, "singleQuote": true,
"trailingComma": "all", "trailingComma": "all",
"overrides": [ "overrides": [

6
pnpm-lock.yaml generated
View File

@@ -1,5 +1,9 @@
lockfileVersion: '6.0' lockfileVersion: '9.0'
settings: settings:
autoInstallPeers: true autoInstallPeers: true
excludeLinksFromLockfile: false excludeLinksFromLockfile: false
importers:
.: {}

View File

@@ -1 +0,0 @@
gen/

9
utils/eslint.config.mjs Normal file
View File

@@ -0,0 +1,9 @@
import eslint from '@eslint/js'
import tseslint from 'typescript-eslint'
export default [
...tseslint.config(eslint.configs.recommended, ...tseslint.configs.recommended),
{
ignores: ['node_modules/', 'build/', 'dist/', 'gen/'],
},
]

View File

@@ -21,11 +21,15 @@
"author": "", "author": "",
"license": "ISC", "license": "ISC",
"dependencies": { "dependencies": {
"@types/node": "^20.11.17", "@types/node": "^20.14.11",
"cosmiconfig": "^9.0.0", "cosmiconfig": "^9.0.0",
"massarg": "2.0.0", "massarg": "2.0.1",
"prettier": "^3.2.5", "prettier": "^3.3.3",
"ts-node": "^10.9.2", "ts-node": "^10.9.2",
"typescript": "^5.3.3" "typescript": "^5.5.3"
},
"devDependencies": {
"@eslint/js": "^9.7.0",
"typescript-eslint": "^7.16.1"
} }
} }

1155
utils/pnpm-lock.yaml generated

File diff suppressed because it is too large Load Diff