-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.45 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.45 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
{
"name": "web-extensions",
"version": "0.0.0",
"description": "Collection of OpenCloud Web Extensions",
"license": "AGPL-3.0",
"author": "OpenCloud",
"private": true,
"homepage": "https://github.com/opencloud-eu/web-extensions",
"type": "module",
"scripts": {
"build": "pnpm -r build",
"build:w": "pnpm -r build:w",
"check:types": "pnpm -r check:types",
"lint": "eslint 'packages/**/*.{js,ts,vue}' --color",
"format:check": "prettier . --check",
"format:write": "prettier . --write",
"test:unit": "pnpm -r test:unit --watch=false",
"test:e2e": "pnpm playwright test"
},
"devDependencies": {
"@opencloud-eu/eslint-config": "^6.0.0",
"@opencloud-eu/extension-sdk": "^6.0.0",
"@opencloud-eu/prettier-config": "^6.0.0",
"@opencloud-eu/tsconfig": "^6.0.0",
"@opencloud-eu/web-test-helpers": "^6.0.0",
"@playwright/test": "^1.50.1",
"@types/node": "24.12.2",
"@vue/test-utils": "^2.4.6",
"eslint": "^10.1.0",
"happy-dom": "^20.0.0",
"prettier": "^3.8.1",
"tailwindcss": "^4.0.0",
"ts-node": "^10.9.2",
"typescript": "^5.9.3",
"uuid": "^13.0.0",
"vite": "^8.0.3",
"vitest": "^4.1.1",
"vitest-mock-extended": "^3.1.0",
"vue-tsc": "^3.2.6",
"vue3-gettext": "^4.0.0-beta.1"
},
"packageManager": "pnpm@10.33.0",
"pnpm": {
"patchedDependencies": {
"@opencloud-eu/extension-sdk": "patches/@opencloud-eu__extension-sdk@6.1.0.patch"
}
}
}