Skip to content

Commit

Permalink
chore: consistent package.json
Browse files Browse the repository at this point in the history
Signed-off-by: Ferdinand Thiessen <[email protected]>
  • Loading branch information
susnux committed Feb 12, 2025
1 parent 13d63ae commit 05be7eb
Showing 1 changed file with 26 additions and 22 deletions.
48 changes: 26 additions & 22 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,22 @@
{
"name": "@nextcloud/l10n",
"version": "3.1.0",
"description": "Nextcloud L10n helpers for apps and libraries",
"description": "Nextcloud localization and translation helpers for apps and libraries",
"keywords": [
"nextcloud",
"l10n",
"localization",
"translation",
"internationalization"
],
"homepage": "https://github.com/nextcloud-libraries/nextcloud-l10n#readme",
"repository": {
"type": "git",
"url": "https://github.com/nextcloud-libraries/nextcloud-l10n"
},
"license": "GPL-3.0-or-later",
"author": "Nextcloud GmbH and Nextcloud contributors",
"type": "module",
"main": "dist/index.cjs",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
Expand All @@ -17,26 +29,25 @@
"require": "./dist/gettext.cjs"
}
},
"main": "dist/index.cjs",
"types": "dist/index.d.ts",
"files": [
"AUTHORS.md",
"dist"
],
"scripts": {
"build": "vite --mode production build",
"build:doc": "typedoc && touch dist/doc/.nojekyll",
"dev": "vite --mode development build --watch",
"lint": "eslint .",
"lint:fix": "eslint --fix lib tests",
"test": "vitest run",
"test:watch": "vitest watch",
"test:coverage": "vitest run --coverage"
"test:coverage": "vitest run --coverage",
"test:watch": "vitest watch"
},
"keywords": [
"nextcloud"
"browserslist": [
"extends @nextcloud/browserslist-config"
],
"homepage": "https://github.com/nextcloud-libraries/nextcloud-l10n#readme",
"author": "Christoph Wurst",
"license": "GPL-3.0-or-later",
"repository": {
"type": "git",
"url": "https://github.com/nextcloud-libraries/nextcloud-l10n"
},
"dependencies": {
"@nextcloud/router": "^3.0.1",
"@nextcloud/typings": "^1.9.1",
Expand All @@ -63,15 +74,8 @@
"vite": "^6.1.0",
"vitest": "^3.0.5"
},
"browserslist": [
"extends @nextcloud/browserslist-config"
],
"engines": {
"node": "^20.0.0",
"npm": "^10.0.0"
},
"files": [
"CHANGELOG.md",
"dist"
]
}
}

0 comments on commit 05be7eb

Please sign in to comment.