-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
52 lines (52 loc) · 1.31 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
{
"name": "exif-rotate-js",
"version": "1.5.0",
"description": "",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"typings": "./dist/esm/index.d.ts",
"exports": {
"require": "./dist/cjs/index.js",
"import": "./dist/esm/index.js",
"types": "./dist/esm/index.d.ts"
},
"files": [
"dist/cjs",
"dist/esm",
"src"
],
"scripts": {
"start": "tsc -w",
"build": "npm run build:cjs && npm run build:esm",
"build:cjs": "tsc -p tsconfig.cjs.json",
"build:esm": "tsc -p tsconfig.esm.json",
"prepare": "npm run build",
"prepublishOnly": "npm run build",
"eslint": "eslint './src/**/*'",
"test": "jest"
},
"dependencies": {
"exif-js": "^2.3.0"
},
"devDependencies": {
"@babel/preset-env": "7.22.20",
"@babel/preset-typescript": "7.22.15",
"@types/jest": "27.5.2",
"@typescript-eslint/eslint-plugin": "6.6.0",
"@typescript-eslint/parser": "6.6.0",
"babel-jest": "27.5.1",
"eslint": "8.49.0",
"eslint-config-prettier": "9.0.0",
"eslint-plugin-prettier": "4.2.1",
"jest": "27.5.1",
"prettier": "2.8.8",
"ts-jest": "27.1.5",
"typescript": "4.9.5"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hanagejet/exif-rotate-js.git"
},
"author": "hanagejet",
"license": "MIT"
}