-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
75 lines (75 loc) · 2 KB
/
package.json
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
{
"name": "@nextcloud/l10n",
"version": "3.1.0",
"description": "Nextcloud L10n helpers for apps and libraries",
"type": "module",
"main": "dist/index.cjs",
"types": "dist/index.d.ts",
"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"
}
},
"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"
},
"keywords": [
"nextcloud"
],
"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",
"@types/dompurify": "^3.2.0",
"@types/escape-html": "^1.0.4",
"dompurify": "^3.2.2",
"escape-html": "^1.0.3",
"node-gettext": "^3.0.0"
},
"devDependencies": {
"@nextcloud/browserslist-config": "^3.0.1",
"@nextcloud/eslint-config": "^8.4.1",
"@nextcloud/vite-config": "^2.2.2",
"@types/dompurify": "^3.2.0",
"@types/escape-html": "^1.0.4",
"@types/node-gettext": "^3.0",
"@vitest/coverage-v8": "^1.6.0",
"@zamiell/typedoc-plugin-not-exported": "^0.3.0",
"gettext-parser": "^8.0.0",
"mock-xmlhttprequest": "^8.4.0",
"typedoc": "^0.27.2",
"vite": "^5.4.11",
"vitest": "^1.5.0"
},
"browserslist": [
"extends @nextcloud/browserslist-config"
],
"engines": {
"node": "^20.0.0",
"npm": "^10.0.0"
},
"files": [
"CHANGELOG.md",
"dist"
]
}