mirror of
https://github.com/misskey-dev/misskey.git
synced 2026-07-26 03:14:58 +02:00
* deps: update deps
* Update Changelog
* update dependencies (major)
* fix: broken lockfile on changelog-checker
* update vite
* update minimum working node version to 22.22.0
* update minimum working node version to 22.22.2
* fix types
* refactor: avoid using default import
* Revert "refactor: avoid using default import"
This reverts commit 5784df2ff0.
---------
Co-authored-by: syuilo <4439005+syuilo@users.noreply.github.com>
45 lines
995 B
JSON
45 lines
995 B
JSON
{
|
|
"name": "i18n",
|
|
"type": "module",
|
|
"private": true,
|
|
"main": "./built/index.js",
|
|
"types": "./built/index.d.ts",
|
|
"exports": {
|
|
".": {
|
|
"types": "./built/index.d.ts",
|
|
"import": "./built/index.js"
|
|
},
|
|
"./const": {
|
|
"types": "./built/const.d.ts",
|
|
"import": "./built/const.js"
|
|
}
|
|
},
|
|
"scripts": {
|
|
"generate": "tsx scripts/generateLocaleInterface.ts",
|
|
"verify": "tsx scripts/verify.ts",
|
|
"build": "tsx ./build.ts",
|
|
"watch": "nodemon -w package.json -e json --exec \"tsx ./build.ts --watch\"",
|
|
"tsd": "tsd",
|
|
"typecheck": "tsgo --noEmit",
|
|
"lint": "pnpm typecheck && pnpm eslint",
|
|
"lint:fix": "pnpm eslint --fix"
|
|
},
|
|
"files": [
|
|
"built"
|
|
],
|
|
"devDependencies": {
|
|
"@types/js-yaml": "4.0.9",
|
|
"@types/node": "24.13.2",
|
|
"@typescript-eslint/eslint-plugin": "8.61.1",
|
|
"@typescript-eslint/parser": "8.61.1",
|
|
"chokidar": "5.0.0",
|
|
"esbuild": "0.28.1",
|
|
"execa": "9.6.1",
|
|
"nodemon": "3.1.14",
|
|
"tsx": "4.22.4"
|
|
},
|
|
"dependencies": {
|
|
"js-yaml": "4.2.0"
|
|
}
|
|
}
|