-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.03 KB
/
Copy pathpackage.json
File metadata and controls
79 lines (79 loc) · 2.03 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
79
{
"name": "six-dropzone",
"version": "0.5.2",
"description": "A powerful and flexible dropzone module for Nuxt.js, providing seamless file upload functionality with drag-and-drop support",
"author": "4sllan (https://github.com/4sllan)",
"repository": {
"type": "git",
"url": "git+https://github.com/4sllan/six-dropzone.git"
},
"bugs": {
"url": "https://github.com/4sllan/six-dropzone/issues"
},
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/4sllan"
}
],
"keywords": [
"dropzone",
"Nuxt.js 4"
],
"license": "MIT",
"type": "module",
"exports": {
".": {
"types": "./dist/types.d.mts",
"import": "./dist/module.mjs"
}
},
"main": "./dist/module.mjs",
"typesVersions": {
"*": {
".": [
"./dist/types.d.mts"
]
}
},
"files": [
"dist"
],
"scripts": {
"prepack": "nuxt-module-build build",
"build": "nuxi build",
"lint": "eslint . --fix",
"typecheck": "nuxi prepare playground && tsc --noEmit",
"postinstall": "nuxi prepare",
"dev": "nuxi dev playground",
"dev:prepare": "nuxt-module-build --stub",
"test": "vitest run --reporter=verbose --silent=false",
"test:watch": "vitest watch --reporter=verbose --silent=false",
"test:debug": "vitest --inspect-brk --reporter=verbose --silent=false",
"format": "prettier --write .",
"format:check": "prettier --check ."
},
"dependencies": {
"@nuxt/kit": "^4.4.8",
"@nuxt/schema": "^4.4.8",
"nuxt": "^4.4.8",
"vue-advanced-cropper": "^2.8.9"
},
"devDependencies": {
"@nuxt/eslint-config": "^1.16.0",
"@nuxt/module-builder": "^1.0.2",
"@nuxt/test-utils": "^4.0.3",
"@types/node": "^25.9.3",
"@vitejs/plugin-vue": "^6.0.7",
"@vue/test-utils": "^2.4.11",
"changelogen": "^0.6.2",
"eslint": "^10.5.0",
"happy-dom": "^20.10.4",
"playwright-core": "^1.61.0",
"prettier": "^3.9.6",
"typescript": "^6.0.3",
"vitest": "^4.1.9",
"vue": "^3.5.38",
"vue-tsc": "^2.2.4"
}
}