-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.27 KB
/
Copy pathpackage.json
File metadata and controls
48 lines (48 loc) · 1.27 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": "ocis-advanced-search",
"version": "0.1.0",
"description": "Advanced search extension for ownCloud Infinite Scale with photo EXIF support",
"author": "Paul Faure <paul@faure.ca>",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/paul43210/ocis-advanced-search.git"
},
"type": "module",
"packageManager": "pnpm@9.1.0",
"engines": {
"node": ">=18",
"pnpm": ">=9"
},
"scripts": {
"build": "vite build",
"build:w": "vite build --watch",
"dev": "vite",
"test:unit": "vitest run",
"test:unit:watch": "vitest",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"test:e2e:headed": "playwright test --headed",
"test:e2e:debug": "playwright test --debug",
"lint": "eslint src --ext .ts,.vue",
"typecheck": "vue-tsc --noEmit"
},
"dependencies": {
"@ownclouders/web-client": "^11.0.0",
"vue": "^3.4.0"
},
"devDependencies": {
"@playwright/test": "^1.40.0",
"@types/node": "^20.11.0",
"@vitejs/plugin-vue": "^5.0.0",
"@vue/tsconfig": "^0.5.0",
"eslint": "^8.56.0",
"typescript": "~5.3.0",
"vite": "^5.0.0",
"vitest": "^1.2.0",
"vue-tsc": "^1.8.0"
},
"peerDependencies": {
"@ownclouders/web-pkg": "*"
}
}