Skip to content

Commit 05be7eb

Browse files
committed
chore: consistent package.json
Signed-off-by: Ferdinand Thiessen <[email protected]>
1 parent 13d63ae commit 05be7eb

File tree

1 file changed

+26
-22
lines changed

1 file changed

+26
-22
lines changed

package.json

Lines changed: 26 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,22 @@
11
{
22
"name": "@nextcloud/l10n",
33
"version": "3.1.0",
4-
"description": "Nextcloud L10n helpers for apps and libraries",
4+
"description": "Nextcloud localization and translation helpers for apps and libraries",
5+
"keywords": [
6+
"nextcloud",
7+
"l10n",
8+
"localization",
9+
"translation",
10+
"internationalization"
11+
],
12+
"homepage": "https://github.com/nextcloud-libraries/nextcloud-l10n#readme",
13+
"repository": {
14+
"type": "git",
15+
"url": "https://github.com/nextcloud-libraries/nextcloud-l10n"
16+
},
17+
"license": "GPL-3.0-or-later",
18+
"author": "Nextcloud GmbH and Nextcloud contributors",
519
"type": "module",
6-
"main": "dist/index.cjs",
7-
"types": "dist/index.d.ts",
820
"exports": {
921
".": {
1022
"types": "./dist/index.d.ts",
@@ -17,26 +29,25 @@
1729
"require": "./dist/gettext.cjs"
1830
}
1931
},
32+
"main": "dist/index.cjs",
33+
"types": "dist/index.d.ts",
34+
"files": [
35+
"AUTHORS.md",
36+
"dist"
37+
],
2038
"scripts": {
2139
"build": "vite --mode production build",
2240
"build:doc": "typedoc && touch dist/doc/.nojekyll",
2341
"dev": "vite --mode development build --watch",
2442
"lint": "eslint .",
2543
"lint:fix": "eslint --fix lib tests",
2644
"test": "vitest run",
27-
"test:watch": "vitest watch",
28-
"test:coverage": "vitest run --coverage"
45+
"test:coverage": "vitest run --coverage",
46+
"test:watch": "vitest watch"
2947
},
30-
"keywords": [
31-
"nextcloud"
48+
"browserslist": [
49+
"extends @nextcloud/browserslist-config"
3250
],
33-
"homepage": "https://github.com/nextcloud-libraries/nextcloud-l10n#readme",
34-
"author": "Christoph Wurst",
35-
"license": "GPL-3.0-or-later",
36-
"repository": {
37-
"type": "git",
38-
"url": "https://github.com/nextcloud-libraries/nextcloud-l10n"
39-
},
4051
"dependencies": {
4152
"@nextcloud/router": "^3.0.1",
4253
"@nextcloud/typings": "^1.9.1",
@@ -63,15 +74,8 @@
6374
"vite": "^6.1.0",
6475
"vitest": "^3.0.5"
6576
},
66-
"browserslist": [
67-
"extends @nextcloud/browserslist-config"
68-
],
6977
"engines": {
7078
"node": "^20.0.0",
7179
"npm": "^10.0.0"
72-
},
73-
"files": [
74-
"CHANGELOG.md",
75-
"dist"
76-
]
80+
}
7781
}

0 commit comments

Comments
 (0)