@nextcloud/image-editor 1.0.0-beta.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +661 -0
- package/README.md +156 -0
- package/dist/assets/index.css +509 -0
- package/dist/index.cjs +4690 -0
- package/dist/index.cjs.map +1 -0
- package/dist/index.d.ts +233 -0
- package/dist/index.mjs +4683 -0
- package/dist/index.mjs.map +1 -0
- package/package.json +105 -0
package/package.json
ADDED
|
@@ -0,0 +1,105 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@nextcloud/image-editor",
|
|
3
|
+
"version": "1.0.0-beta.1",
|
|
4
|
+
"description": "Vue 3 image editor component for Nextcloud apps",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"nextcloud",
|
|
7
|
+
"image",
|
|
8
|
+
"editor",
|
|
9
|
+
"canvas",
|
|
10
|
+
"konva",
|
|
11
|
+
"vue"
|
|
12
|
+
],
|
|
13
|
+
"homepage": "https://github.com/nextcloud-libraries/nextcloud-image-editor",
|
|
14
|
+
"bugs": {
|
|
15
|
+
"url": "https://github.com/nextcloud-libraries/nextcloud-image-editor/issues"
|
|
16
|
+
},
|
|
17
|
+
"repository": {
|
|
18
|
+
"type": "git",
|
|
19
|
+
"url": "git+https://github.com/nextcloud-libraries/nextcloud-image-editor.git"
|
|
20
|
+
},
|
|
21
|
+
"license": "AGPL-3.0-or-later",
|
|
22
|
+
"author": "Nextcloud GmbH and Nextcloud contributors",
|
|
23
|
+
"type": "module",
|
|
24
|
+
"exports": {
|
|
25
|
+
".": {
|
|
26
|
+
"types": "./dist/index.d.ts",
|
|
27
|
+
"import": "./dist/index.mjs",
|
|
28
|
+
"require": "./dist/index.cjs"
|
|
29
|
+
},
|
|
30
|
+
"./style": "./dist/assets/index.css"
|
|
31
|
+
},
|
|
32
|
+
"main": "dist/index.cjs",
|
|
33
|
+
"module": "dist/index.mjs",
|
|
34
|
+
"types": "dist/index.d.ts",
|
|
35
|
+
"publishConfig": {
|
|
36
|
+
"access": "public"
|
|
37
|
+
},
|
|
38
|
+
"sideEffects": [
|
|
39
|
+
"**/*.css"
|
|
40
|
+
],
|
|
41
|
+
"files": [
|
|
42
|
+
"dist"
|
|
43
|
+
],
|
|
44
|
+
"scripts": {
|
|
45
|
+
"build": "vite --mode production build",
|
|
46
|
+
"build:demo": "vite build --config playground/vite.config.ts",
|
|
47
|
+
"build:doc": "typedoc && touch dist/doc/.nojekyll",
|
|
48
|
+
"dev": "vite --mode development build",
|
|
49
|
+
"l10n:extract": "node build/extract-l10n.js",
|
|
50
|
+
"lint": "eslint lib/ __tests__/ e2e/ playground/",
|
|
51
|
+
"lint:fix": "eslint --fix lib/ __tests__/ e2e/ playground/",
|
|
52
|
+
"playground": "vite serve --config playground/vite.config.ts",
|
|
53
|
+
"prepack": "npm run build",
|
|
54
|
+
"test": "vitest run",
|
|
55
|
+
"test:coverage": "vitest run --coverage",
|
|
56
|
+
"test:e2e": "playwright test",
|
|
57
|
+
"test:watch": "vitest watch",
|
|
58
|
+
"typecheck": "vue-tsc --noEmit -p tsconfig.check.json",
|
|
59
|
+
"watch": "vite --mode development build --watch"
|
|
60
|
+
},
|
|
61
|
+
"dependencies": {
|
|
62
|
+
"@nextcloud/l10n": "^3.4.0",
|
|
63
|
+
"konva": "~10.3.2"
|
|
64
|
+
},
|
|
65
|
+
"devDependencies": {
|
|
66
|
+
"@nextcloud/dialogs": "^7.5.0",
|
|
67
|
+
"@nextcloud/eslint-config": "^9.0.1",
|
|
68
|
+
"@nextcloud/vite-config": "^2.5.4",
|
|
69
|
+
"@nextcloud/vue": "^9.11.0",
|
|
70
|
+
"@playwright/test": "^1.62.1",
|
|
71
|
+
"@types/node": "^24.9.1",
|
|
72
|
+
"@vitejs/plugin-vue": "^6.0.8",
|
|
73
|
+
"@vitest/coverage-v8": "^3.2.4",
|
|
74
|
+
"@vue/tsconfig": "^0.8.1",
|
|
75
|
+
"gettext-extractor": "^4.0.1",
|
|
76
|
+
"gettext-parser": "^8.0.0",
|
|
77
|
+
"jsdom": "^27.0.1",
|
|
78
|
+
"sass": "^1.103.1",
|
|
79
|
+
"typedoc": "^0.28.20",
|
|
80
|
+
"typescript": "^5.9.3",
|
|
81
|
+
"vite": "^7.1.11",
|
|
82
|
+
"vitest": "^3.2.4",
|
|
83
|
+
"vue": "^3.5.13",
|
|
84
|
+
"vue-material-design-icons": "^5.3.1",
|
|
85
|
+
"vue-tsc": "^3.3.11"
|
|
86
|
+
},
|
|
87
|
+
"peerDependencies": {
|
|
88
|
+
"@nextcloud/dialogs": "^7.0.0",
|
|
89
|
+
"@nextcloud/vue": "^9.0.0",
|
|
90
|
+
"vue": "^3.5.0"
|
|
91
|
+
},
|
|
92
|
+
"engines": {
|
|
93
|
+
"node": "^20.0.0 || ^22.0.0 || ^24.0.0"
|
|
94
|
+
},
|
|
95
|
+
"devEngines": {
|
|
96
|
+
"runtime": {
|
|
97
|
+
"name": "node",
|
|
98
|
+
"version": "^24.0.0"
|
|
99
|
+
},
|
|
100
|
+
"packageManager": {
|
|
101
|
+
"name": "npm",
|
|
102
|
+
"version": "^11.5.1"
|
|
103
|
+
}
|
|
104
|
+
}
|
|
105
|
+
}
|