-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
52 lines (52 loc) · 1.43 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
{
"name": "files_linkeditor",
"version": "1.0.0",
"description": "A nextcloud app to edit .URL and .webloc files and visit links stored in them.",
"main": "index.js",
"scripts": {
"dev": "vite --watch --mode development build",
"build": "vite --mode production build",
"test": "vitest ./unittest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/te-online/files_linkeditor.git"
},
"type": "module",
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/te-online/files_linkeditor/issues"
},
"homepage": "https://github.com/te-online/files_linkeditor#readme",
"devDependencies": {
"@playwright/test": "^1.43.0",
"@prettier/plugin-php": "^0.22.2",
"@types/node": "^20.12.5",
"big-integer": "^1.6.52",
"buffer": "^6.0.3",
"core-js": "^3.36.1",
"dotenv": "^16.4.5",
"eslint": "^9.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-standard": "^4.1.0",
"jsdom": "^24.0.0",
"playwright": "^1.43.0",
"prettier": "^3.2.5",
"svelte": "^4.2.12",
"vitest": "^1.4.0"
},
"dependencies": {
"@braintree/sanitize-url": "^7.0.1",
"@nextcloud/files": "^3.1.1",
"@sveltejs/vite-plugin-svelte": "^3.0.2",
"path": "^0.12.7",
"vite": "^5.2.8",
"vite-plugin-node-polyfills": "^0.21.0"
}
}