-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.08 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.08 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
{
"name": "@data2image/core",
"version": "1.2.1",
"description": "Convert any file to a PNG image and back. Isomorphic encoder/decoder library.",
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.mts",
"exports": {
".": {
"types": "./dist/index.d.mts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
}
},
"files": [
"dist",
"LICENSE",
"README.md"
],
"scripts": {
"build": "tsdown",
"test": "vitest run",
"test:watch": "vitest",
"benchmark": "tsx benchmark.ts"
},
"keywords": [
"data2image",
"file-to-image",
"encoder",
"decoder",
"png",
"steganography"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Benji377/data2image.git",
"directory": "packages/core"
},
"homepage": "https://benji377.github.io/data2image/",
"dependencies": {
"fast-png": "^8.0.0",
"fflate": "^0.8.2"
},
"devDependencies": {
"tsdown": "^0.22.0",
"tsx": "^4.19.2",
"vitest": "^4.0.0"
}
}