-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
45 lines (45 loc) · 869 Bytes
/
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
{
"name": "jay-peg",
"description": "Performant JPEG decoder",
"version": "1.1.0",
"type": "module",
"license": "MIT",
"main": "./dist/index.cjs",
"module": "./src/index.js",
"source": "./src/index.js",
"exports": {
"import": "./src/index.js",
"require": "./dist/index.cjs"
},
"targets": {
"module": false
},
"keywords": [
"binary",
"jpeg",
"decode"
],
"files": [
"src",
"dist",
"LICENSE",
"README.md"
],
"scripts": {
"test": "vitest",
"benchmark": "node ./benchmark",
"format": "yarn prettier . --write",
"build": "parcel build",
"prepublishOnly": "parcel build"
},
"dependencies": {
"restructure": "^3.0.0"
},
"devDependencies": {
"benchmark": "^2.1.4",
"colors": "^1.4.0",
"parcel": "^2.11.0",
"prettier": "3.2.4",
"vitest": "^1.2.2"
}
}