-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.14 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
{
"name": "uppy-heic",
"version": "1.0.1",
"description": "Uppy plugin to convert HEIC to JPEG before upload, using heic-convert package",
"main": "dist/index.cjs",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"require": "./dist/index.cjs",
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"type": "module",
"files": [
"dist"
],
"scripts": {
"build": "tsup src/index.ts --format cjs,esm --dts --clean",
"publish:packages": "pnpm build && pnpm version patch && pnpm publish && git push --follow-tags"
},
"keywords": [
"uppy",
"uppy plugin",
"heic"
],
"bugs": {
"url": "https://github.com/dogrocker/uppy-heic/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dogrocker/uppy-heic.git"
},
"homepage": "https://github.com/dogrocker/uppy-heic#readme",
"author": "Kanin Peanviriyakulkit",
"license": "MIT",
"dependencies": {
"@uppy/core": "^3.0.4",
"heic-convert": "^1.2.4"
},
"devDependencies": {
"@types/node": "^18.11.17",
"tsup": "^6.5.0",
"typescript": "^4.9.4"
}
}