mirror of
https://github.com/misskey-dev/misskey.git
synced 2026-07-25 10:54:56 +02:00
* deps: update dependencies
* deps: update dependencies (major)
* migrate js-yaml
* migrate js-yaml
* run pnpm dedupe
* fix
* chore: reorganize dependencies
* perf: lazy-load id generators
* Revert "perf: lazy-load id generators"
This reverts commit 041f7c4206.
44 lines
965 B
JSON
44 lines
965 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/node": "26.0.1",
|
|
"@typescript-eslint/eslint-plugin": "8.62.0",
|
|
"@typescript-eslint/parser": "8.62.0",
|
|
"chokidar": "5.0.0",
|
|
"esbuild": "0.28.1",
|
|
"execa": "9.6.1",
|
|
"nodemon": "3.1.14",
|
|
"tsx": "4.22.4"
|
|
},
|
|
"dependencies": {
|
|
"js-yaml": "5.2.0"
|
|
}
|
|
}
|