-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 1.89 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 1.89 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
{
"name": "@nextcloud/moment",
"version": "1.3.5",
"description": "Customized moment.js for Nextcloud",
"keywords": [
"nextcloud",
"moment"
],
"homepage": "https://github.com/nextcloud-libraries/nextcloud-moment#readme",
"repository": {
"type": "git",
"url": "https://github.com/nextcloud-libraries/nextcloud-moment"
},
"license": "GPL-3.0-or-later",
"author": "Christoph Wurst",
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.cjs",
"import": "./dist/index.mjs"
}
},
"main": "dist/index.cjs",
"types": "dist/index.d.ts",
"files": [
"README.md",
"LICENSE",
"dist"
],
"scripts": {
"build": "vite --mode production build",
"build:doc": "typedoc --out dist/doc lib/index.ts && touch dist/doc/.nojekyll",
"ts:check": "tsc --noEmit",
"dev": "vite --mode development build",
"l10n:extract": "node build/extract-l10n.js",
"lint": "eslint",
"lint:fix": "eslint --fix",
"test": "vitest run",
"test:watch": "vitest watch"
},
"browserslist": [
"extends @nextcloud/browserslist-config"
],
"dependencies": {
"@nextcloud/l10n": "^3.4.0",
"moment": "^2.30.1"
},
"devDependencies": {
"@nextcloud/browserslist-config": "^3.0.1",
"@nextcloud/eslint-config": "^9.0.0-rc.2",
"@nextcloud/vite-config": "^2.3.5",
"@types/node": "^24.0.3",
"eslint": "^9.31.0",
"gettext-extractor": "^4.0.1",
"gettext-parser": "^8.0.0",
"jsdom": "^26.1.0",
"typedoc": "^0.28.7",
"typescript": "^5.8.3",
"vite": "^6.3.0",
"vitest": "^3.2.4"
},
"engines": {
"node": "^20.0.0 || ^22.0.0 || ^24.0.0"
},
"devEngines": {
"packageManager": {
"name": "npm",
"onFail": "error",
"version": "^10.0.0"
},
"runtime": {
"name": "node",
"onFail": "error",
"version": "^22.0.0"
}
}
}