-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
112 lines (112 loc) · 3.06 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
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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"name": "js-image-lib",
"version": "1.0.1",
"description": "An image manipulation library using only pure JavaScript",
"author": "Josh McFarlin <[email protected]>",
"license": "MIT",
"sideEffects": false,
"keywords": [
"image",
"manipulation",
"transformation"
],
"homepage": "https://js-image-lib.mcfarl.in",
"repository": {
"type": "git",
"url": "https://github.com/Josh-McFarlin/js-image-lib.git"
},
"bugs": {
"url": "https://github.com/Josh-McFarlin/js-image-lib/issues"
},
"main": "build/cjs/index.cjs",
"module": "build/mjs/index.mjs",
"types": "build/index.d.ts",
"exports": {
".": {
"require": "./build/cjs/index.cjs",
"import": "./build/mjs/index.mjs"
}
},
"files": [
"build",
"package.json",
"README.md"
],
"scripts": {
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,json}\"",
"lint": "eslint --fix --ext ts --ext tsx --ext js --ext jsx .",
"prebuild": "rimraf coverage build tmp",
"typecheck": "tsc --project tsconfig.json --noEmit",
"build": "rollup -c",
"watch": "rollup -c -w",
"test": "jest --passWithNoTests",
"test:watch": "jest --watch",
"prepare": "husky install",
"commit": "git-cz",
"release": "dotenv release-it --",
"size": "npm run build && size-limit"
},
"dependencies": {
"@pdf-lib/upng": "^1.0.1",
"@wokwi/bmp-ts": "^3.0.0",
"decode-tiff": "^0.2.1",
"get-rgba-palette": "^2.0.1",
"jpeg-js": "^0.4.4",
"mime-tree": "^0.1.4",
"omggif": "^1.0.10"
},
"devDependencies": {
"@commitlint/cli": "^16.1.0",
"@commitlint/config-conventional": "^16.0.0",
"@commitlint/cz-commitlint": "^16.1.0",
"@commitlint/prompt-cli": "^16.1.0",
"@release-it/keep-a-changelog": "^2.3.0",
"@rollup/plugin-commonjs": "^21.0.1",
"@rollup/plugin-node-resolve": "^13.0.6",
"@rollup/plugin-replace": "^3.0.1",
"@size-limit/preset-big-lib": "^7.0.8",
"@size-limit/webpack-why": "^7.0.8",
"@types/jest": "^27.0.3",
"@types/omggif": "^1.0.2",
"@typescript-eslint/eslint-plugin": "^5.5.0",
"@typescript-eslint/parser": "^5.5.0",
"commitizen": "^4.2.4",
"concurrently": "^6.4.0",
"dotenv-cli": "^4.1.1",
"eslint": "^8.4.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-jest": "^25.3.0",
"husky": "^7.0.4",
"identity-obj-proxy": "^3.0.0",
"jest": "^27.4.3",
"lint-staged": "^12.1.2",
"prettier": "2.5.1",
"release-it": "^14.12.3",
"rimraf": "^3.0.2",
"rollup": "^2.70.1",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.31.2",
"size-limit": "^7.0.8",
"ts-jest": "^27.1.0",
"typescript": "4.5.x"
},
"lint-staged": {
"*.{js,ts}": "eslint --cache --fix",
"*.{js,ts,json}": "prettier --write"
},
"size-limit": [
{
"path": "build/cjs/index.cjs",
"limit": "50 KB"
},
{
"path": "build/mjs/index.mjs",
"limit": "50 KB"
}
],
"engines": {
"node": ">=12"
}
}