-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
40 lines (40 loc) · 944 Bytes
/
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
{
"name": "@directus/file-metadata",
"version": "0.0.1",
"type": "module",
"scripts": {
"build": "tsc --build",
"dev": "tsc --watch",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage"
},
"description": "Extract metadata from file streams (EXIF / ICC / IPTC)",
"repository": {
"type": "git",
"url": "https://github.com/directus/directus.git",
"directory": "packages/file-metadata"
},
"funding": "https://github.com/directus/directus?sponsor=1",
"license": "GPL-3.0",
"author": "Rijk van Zanten <[email protected]>",
"exports": {
".": "./dist/index.js",
"./package.json": "./package.json"
},
"main": "dist/index.js",
"files": [
"dist",
"!**/*.d.ts?(.map)"
],
"publishConfig": {
"access": "public"
},
"dependencies": {},
"devDependencies": {
"@directus/tsconfig": "0.0.6",
"@vitest/coverage-c8": "0.25.3",
"typescript": "4.9.3",
"vitest": "0.25.3"
}
}