-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
123 lines (123 loc) · 3.33 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
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
{
"name": "@jrmc/adonis-attachment",
"version": "3.2.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 [email protected]",
"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",
"./attachment_service": "./build/services/attachment_service.js",
"./attachment_provider": "./build/providers/attachment_provider.js"
},
"dependencies": {
"@poppinss/defer": "^1.1.1",
"exifreader": "^4.26.0",
"file-type": "^19.6.0",
"mime-types": "^2.1.35"
},
"devDependencies": {
"@adonisjs/assembler": "^7.8.2",
"@adonisjs/core": "^6.17.1",
"@adonisjs/drive": "^3.2.0",
"@adonisjs/lucid": "^21.6.0",
"@adonisjs/prettier-config": "^1.4.0",
"@adonisjs/tsconfig": "^1.4.0",
"@japa/assert": "^4.0.1",
"@japa/expect-type": "^2.0.3",
"@japa/file-system": "^2.3.2",
"@japa/plugin-adonisjs": "^4.0.0",
"@japa/runner": "^4.1.0",
"@poppinss/utils": "^6.9.2",
"@swc/core": "^1.10.7",
"@types/luxon": "^3.4.2",
"@types/mime-types": "^2.1.4",
"@types/node": "^22.10.7",
"@types/sinon": "^17.0.3",
"better-sqlite3": "^11.8.0",
"c8": "^10.1.3",
"copyfiles": "^2.4.1",
"del-cli": "^6.0.0",
"flydrive": "^1.1.0",
"luxon": "^3.5.0",
"prettier": "^3.4.2",
"ts-node": "^10.9.2",
"typescript": "^5.7.3",
"vitepress": "^1.5.0"
},
"peerDependencies": {
"@adonisjs/core": "^6.12.1",
"@adonisjs/drive": "^3.2.0",
"@adonisjs/lucid": "^20.6.0 || ^21.0.0"
},
"prettier": "@adonisjs/prettier-config",
"c8": {
"reporter": [
"text",
"html"
],
"exclude": [
"tests/**"
]
},
"publishConfig": {
"access": "public",
"tag": "latest"
},
"volta": {
"node": "20.17.0"
}
}