-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
92 lines (92 loc) · 2.63 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
{
"name": "autemconsequatur",
"version": "1.0.0",
"description": "An image manipulation library using only pure JavaScript",
"author": "ReidTurner",
"license": "MIT",
"keywords": [
"eos",
"manipulation",
"explicabo"
],
"homepage": "https://github.com/JensenBotsford/autemconsequatur.git",
"repository": {
"type": "git",
"url": "https://github.com/JensenBotsford/autemconsequatur.git"
},
"bugs": {
"url": "https://github.com/JensenBotsford/autemconsequatur.git/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"
],
"dependencies": {
"@pdf-lib/upng": "^1.0.1",
"@wokwi/bmp-ts": "^3.0.0",
"get-rgba-palette": "^2.0.1",
"is-svg": "^4.3.2",
"jpeg-js": "^0.4.3",
"omggif": "^1.0.10",
"utif": "^3.1.0"
},
"devDependencies": {
"@babel/core": "^7.16.0",
"@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-inject": "^4.0.4",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^13.0.6",
"@rollup/plugin-replace": "^3.0.1",
"@types/jest": "^27.0.3",
"@types/omggif": "^1.0.2",
"@types/utif": "^3.0.1",
"@typescript-eslint/eslint-plugin": "^5.5.0",
"@typescript-eslint/parser": "^5.5.0",
"babel-loader": "^8.2.3",
"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.60.2",
"rollup-plugin-copy": "^3.4.0",
"rollup-plugin-delete": "^2.0.0",
"rollup-plugin-multi-input": "^1.3.1",
"rollup-plugin-node-builtins": "^2.1.2",
"rollup-plugin-node-globals": "^1.4.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-polyfill-node": "^0.8.0",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.31.1",
"ts-jest": "^27.1.0",
"typescript": "^4.5.2"
},
"lint-staged": {
"*.{js,ts}": "eslint --cache --fix",
"*.{js,ts,json}": "prettier --write"
}
}