-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.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
{
"name": "exifly",
"version": "0.1.2",
"description": "An ES modules Typescript implementation to get EXIF of an image",
"scripts": {
"build": "rollup -c",
"dev": "rollup -c -w",
"prepublishOnly": "npm run build"
},
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"browser": "dist/exifly.umd.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/winjeysong/exifly.git"
},
"keywords": [
"exif",
"heic",
"jpg",
"jpeg",
"exif-heic-js",
"exif-heic-ts",
"exif.js"
],
"author": "winjeysong <winjey-song@163.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/winjeysong/exifly/issues"
},
"homepage": "https://github.com/winjeysong/exifly",
"devDependencies": {
"rollup": "~2.79.1",
"@rollup/plugin-commonjs": "~17.1.0",
"@rollup/plugin-node-resolve": "~11.2.1",
"@rollup/plugin-terser": "~0.4.4",
"husky": "~3.1.0",
"lint-staged": "~9.5.0",
"prettier": "~3.2.5",
"rollup-plugin-license": "~3.2.0",
"rollup-plugin-typescript2": "~0.29.0",
"typescript": "~4.9.5"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"**/*.{js,jsx,tsx,ts,md,json}": [
"prettier --write",
"git add"
]
}
}