forked from mirror/misskey
2960dd3f0c
Bumps the typescript-eslint group with 2 updates in the / directory: [@typescript-eslint/eslint-plugin](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin) and [@typescript-eslint/parser](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser). Updates `@typescript-eslint/eslint-plugin` from 7.1.0 to 8.18.0 - [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases) - [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/eslint-plugin/CHANGELOG.md) - [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.18.0/packages/eslint-plugin) Updates `@typescript-eslint/parser` from 7.1.0 to 8.18.0 - [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases) - [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/parser/CHANGELOG.md) - [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.18.0/packages/parser) --- updated-dependencies: - dependency-name: "@typescript-eslint/eslint-plugin" dependency-type: direct:development update-type: version-update:semver-major dependency-group: typescript-eslint - dependency-name: "@typescript-eslint/parser" dependency-type: direct:development update-type: version-update:semver-major dependency-group: typescript-eslint ... Signed-off-by: dependabot[bot] <support@github.com>
40 lines
896 B
JSON
40 lines
896 B
JSON
{
|
|
"name": "frontend-shared",
|
|
"type": "module",
|
|
"main": "./js-built/index.js",
|
|
"types": "./js-built/index.d.ts",
|
|
"exports": {
|
|
".": {
|
|
"import": "./js-built/index.js",
|
|
"types": "./js-built/index.d.ts"
|
|
},
|
|
"./*": {
|
|
"import": "./js-built/*",
|
|
"types": "./js-built/*"
|
|
}
|
|
},
|
|
"scripts": {
|
|
"build": "node ./build.js",
|
|
"watch": "nodemon -w package.json -e json --exec \"node ./build.js --watch\"",
|
|
"eslint": "eslint './**/*.{js,jsx,ts,tsx}'",
|
|
"typecheck": "tsc --noEmit",
|
|
"lint": "pnpm typecheck && pnpm eslint"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "22.9.0",
|
|
"@typescript-eslint/eslint-plugin": "8.18.0",
|
|
"@typescript-eslint/parser": "8.18.0",
|
|
"esbuild": "0.24.0",
|
|
"eslint-plugin-vue": "9.31.0",
|
|
"typescript": "5.6.3",
|
|
"vue-eslint-parser": "9.4.3"
|
|
},
|
|
"files": [
|
|
"js-built"
|
|
],
|
|
"dependencies": {
|
|
"misskey-js": "workspace:*",
|
|
"vue": "3.5.12"
|
|
}
|
|
}
|