-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) · 2.68 KB
/
package.json
File metadata and controls
97 lines (97 loc) · 2.68 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "@nextcloud/l10n",
"version": "3.4.1",
"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",
"sideEffects": false,
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
},
"./gettext": {
"types": "./dist/gettext.d.ts",
"import": "./dist/gettext.mjs",
"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",
"prerelease:format-changelog": "node build/format-changelog.mjs",
"test": "npm run test:dom && npm run test:node",
"test:coverage": "LANG=en-US TZ=America/Chicago vitest run --coverage",
"test:dom": "LANG=en-US TZ=America/Chicago vitest run",
"test:node": "LANG=en-US TZ=America/Chicago vitest run --environment node",
"test:watch": "LANG=en-US TZ=America/Chicago vitest watch",
"ts:check": "tsc --noEmit"
},
"browserslist": [
"extends @nextcloud/browserslist-config"
],
"dependencies": {
"@nextcloud/capabilities": "^1.2.1",
"@nextcloud/router": "^3.1.0",
"@nextcloud/typings": "^1.10.0",
"@types/escape-html": "^1.0.4",
"dompurify": "^3.3.2",
"escape-html": "^1.0.3"
},
"devDependencies": {
"@nextcloud/browserslist-config": "^3.1.2",
"@nextcloud/eslint-config": "^9.0.0-rc.8",
"@nextcloud/vite-config": "^2.5.2",
"@types/escape-html": "^1.0.4",
"@types/gettext-parser": "^9.0.0",
"@types/node": "^24.12.0",
"@vitest/coverage-v8": "^4.0.18",
"eslint": "^9.39.2",
"gettext-parser": "^9.0.1",
"jsdom": "^28.0.0",
"msw": "^2.12.10",
"typedoc": "^0.28.17",
"typedoc-plugin-missing-exports": "^4.1.2",
"typescript": "^5.9.3",
"vite": "^7.3.1",
"vitest": "^4.0.10"
},
"engines": {
"node": "^20 || ^22 || ^24"
},
"devEngines": {
"packageManager": [
{
"name": "npm",
"version": "^11.3.0"
}
],
"runtime": {
"name": "node",
"version": "^24"
}
}
}