-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
139 lines (139 loc) · 3.77 KB
/
package.json
File metadata and controls
139 lines (139 loc) · 3.77 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
{
"name": "@jrmc/adonis-attachment",
"version": "5.1.2",
"type": "module",
"description": "Turn any field on your Lucid model to an attachment data type",
"engines": {
"node": ">=20.12.0"
},
"main": "build/index.js",
"repository": {
"type": "git",
"url": "https://github.com/batosai/adonis-attachment.git"
},
"homepage": "https://adonis-attachment.jrmc.dev",
"author": "Jeremy Chaufourier jeremy@chaufourier.fr",
"license": "MIT",
"keywords": [
"adonisjs",
"lucid",
"attachment",
"attachment-advanced",
"image-attachment",
"image-manipulation",
"responsive-images",
"upload",
"resize-images",
"optimize-images",
"image",
"pdf",
"video",
"document",
"word",
"sharp"
],
"files": [
"build"
],
"scripts": {
"typecheck": "tsc --noEmit",
"build": "npm run clean && tsc",
"postbuild": "npm run copyfiles && npm run index:commands",
"prepublishOnly": "npm run build",
"clean": "del-cli build",
"copyfiles": "copyfiles \"stubs/**/**/*.stub\" build",
"index:commands": "adonis-kit index build/commands",
"format": "prettier --write .",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs",
"test": "c8 npm run quick:test",
"quick:test": "node --import=./tsnode.esm.js --enable-source-maps bin/test.ts"
},
"exports": {
".": "./build/index.js",
"./types/*": "./build/src/types/*.js",
"./mixins": "./build/src/mixins/attachmentable.js",
"./decorators": "./build/src/decorators/attachment.js",
"./services/*": "./build/services/*.js",
"./converters/*": "./build/src/converters/*.js",
"./providers/*": "./build/providers/*.js",
"./commands": "./build/commands/main.js",
"./commands/*": "./build/commands/*.js",
"./controllers/*": "./build/src/controllers/*.js",
"./attachment_service": "./build/services/attachment_service.js",
"./attachment_provider": "./build/providers/attachment_provider.js"
},
"dependencies": {
"@poppinss/defer": "^1.1.3",
"@verrou/core": "^0.5.2",
"blurhash": "^2.0.5",
"execa": "^9.6.1",
"exifreader": "^4.34.0",
"file-type": "^21.3.0",
"mime-types": "^3.0.2"
},
"devDependencies": {
"@adonisjs/assembler": "^7.8.2",
"@adonisjs/core": "^6.19.2",
"@adonisjs/drive": "^3.4.1",
"@adonisjs/lock": "^1.1.1",
"@adonisjs/lucid": "^21.8.1",
"@adonisjs/prettier-config": "^1.4.5",
"@adonisjs/tsconfig": "^1.4.1",
"@japa/assert": "^4.2.0",
"@japa/expect-type": "^2.0.4",
"@japa/file-system": "^2.3.2",
"@japa/runner": "^4.4.0",
"@poppinss/exception": "^1.2.3",
"@swc/core": "^1.15.8",
"@types/luxon": "^3.7.1",
"@types/mime-types": "^3.0.1",
"@types/node": "^25.0.3",
"@types/sinon": "^21.0.0",
"better-sqlite3": "^12.5.0",
"c8": "^10.1.3",
"copyfiles": "^2.4.1",
"del-cli": "^7.0.0",
"flydrive": "^1.3.0",
"luxon": "^3.7.2",
"prettier": "^3.7.4",
"sharp": "^0.34.5",
"sinon": "^21.0.1",
"ts-node": "^10.9.2",
"typescript": "^5.9.3",
"vitepress": "^1.6.4"
},
"peerDependencies": {
"@adonisjs/core": "^6.12.1 || ^7.0.0-next || ^7.0.0",
"@adonisjs/drive": "^3.2.0 || ^4.0.0-next || ^4.0.0",
"@adonisjs/lock": "^1.1.1 || ^2.0.0",
"@adonisjs/lucid": "^20.6.0 || ^21.0.0 || ^22.0.0-next || ^22.0.0",
"sharp": "^0.34.0"
},
"peerDependenciesMeta": {
"@adonisjs/lock": {
"optional": true
},
"sharp": {
"optional": true
}
},
"prettier": "@adonisjs/prettier-config",
"c8": {
"reporter": [
"text",
"html"
],
"exclude": [
"tests/**"
]
},
"publishConfig": {
"access": "public",
"tag": "latest"
},
"volta": {
"node": "20.17.0"
}
}