-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.53 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.53 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
{
"name": "imguri",
"version": "1.0.1",
"description": "Modern, lightweight library to convert local/network image files to data URI scheme",
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
}
},
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"build": "node scripts/build.js",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"prepare": "npm run build",
"prepublishOnly": "npm run lint && npm run test && npm run build"
},
"dependencies": {
"mime-types": "^3.0.1"
},
"devDependencies": {
"@types/node": "^25.2.3",
"@vitest/coverage-v8": "^4.0.10",
"esbuild": "^0.27.0",
"eslint": "^9.39.1",
"globals": "^17.3.0",
"nock": "^14.0.10",
"prettier": "^3.2.4",
"vitest": "^4.0.10"
},
"repository": {
"type": "git",
"url": "git+https://github.com/1mb-dev/imguri.git"
},
"keywords": [
"data-uri",
"image-data",
"inline-image",
"base64",
"image-encoding",
"data-url",
"esm",
"nodejs"
],
"author": "Vinayak Mishra",
"license": "MIT",
"homepage": "https://github.com/1mb-dev/imguri#readme",
"bugs": {
"url": "https://github.com/1mb-dev/imguri/issues"
},
"files": [
"dist",
"README.md",
"LICENSE"
]
}