-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.04 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 2.04 KB
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
{
"name": "inei",
"version": "1.1.1",
"description": "A simple and efficient EXIF metadata parser for JPEG images in TypeScript.",
"main": "index.js",
"website": "https://github.com/rajbirjohar/inei",
"type": "module",
"files": [
"dist",
"README.md",
"LICENSE"
],
"publishConfig": {
"access": "public"
},
"module": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./format": {
"import": "./dist/format.js",
"types": "./dist/format.d.ts"
},
"./format-tags": {
"import": "./dist/format-tags.js",
"types": "./dist/format-tags.d.ts"
}
},
"scripts": {
"test": "vitest run",
"test:watch": "vitest --watch",
"test:coverage": "vitest run --coverage",
"demo": "tsx demo/index.ts",
"build:js": "vite build",
"build:types": "tsc -p tsconfig.types.json",
"build": "pnpm build:js && pnpm build:types",
"lint": "ultracite lint",
"format": "ultracite format",
"prepare": "lefthook install",
"typecheck": "tsc --noEmit",
"prepublishOnly": "pnpm typecheck && pnpm test && pnpm build",
"release:version": "changeset version && pnpm install",
"release:publish": "changeset publish",
"release": "pnpm run release:version && pnpm build && pnpm run release:publish"
},
"keywords": [
"exif",
"metadata",
"image",
"photo",
"parser",
"jpeg"
],
"author": "Rajbir Johar",
"license": "ISC",
"packageManager": "pnpm@10.4.1",
"devDependencies": {
"@biomejs/biome": "2.2.0",
"@changesets/cli": "^2.29.6",
"@microsoft/api-extractor": "^7.52.10",
"@types/node": "^24.3.0",
"@vitest/coverage-v8": "^3.2.4",
"@vitest/ui": "3.2.4",
"lefthook": "^1.12.3",
"lint-staged": "^16.1.5",
"tsx": "^4.20.4",
"typescript": "^5.9.2",
"ultracite": "5.2.3",
"vite": "^7.1.2",
"vitest": "^3.2.4"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,json,jsonc,css,scss}": [
"ultracite format"
]
}
}