-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
101 lines (101 loc) · 3.1 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
{
"name": "image-js",
"version": "0.0.0",
"description": "Image processing and manipulation in JavaScript",
"keywords": [],
"author": "Michaël Zasso",
"license": "MIT",
"files": [
"src",
"lib",
"lib-esm",
"dist-types"
],
"main": "./lib/index.js",
"module": "./lib-esm/index.js",
"browser": {
"lib-esm/save/write.js": "./lib-esm/save/write.browser.js",
"lib-esm/load/read.js": "./lib-esm/load/read.browser.js"
},
"scripts": {
"api-extractor": "rimraf dist-types && api-extractor run --local",
"check-types": "tsc --noEmit",
"clean": "rimraf lib lib-esm",
"demo": "vite --open",
"eslint": "eslint src demo --cache",
"eslint-fix": "npm run eslint -- --fix",
"prepack": "npm run tsc && npm run api-extractor",
"prettier": "prettier --check src demo",
"prettier-write": "prettier --write src demo",
"test": "npm run test-only && npm run eslint && npm run prettier && npm run check-types",
"test-only": "cross-env JEST_IMAGE_SNAPSHOT_TRACK_OBSOLETE=1 jest",
"tsc": "npm run clean && npm run tsc-cjs && npm run tsc-esm",
"tsc-cjs": "tsc --project tsconfig.cjs.json",
"tsc-esm": "tsc --project tsconfig.esm.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/image-js/image-js.git"
},
"bugs": {
"url": "https://github.com/image-js/image-js/issues"
},
"homepage": "https://github.com/image-js/image-js#readme",
"overrides": {
"jest": "$jest"
},
"dependencies": {
"bresenham-zingl": "^0.1.1",
"colord": "^2.9.3",
"fast-bmp": "^2.0.1",
"fast-jpeg": "^2.0.1",
"fast-png": "^6.2.0",
"image-type": "^4.1.0",
"jpeg-js": "^0.4.4",
"js-priority-queue": "^0.1.5",
"median-quickselect": "^1.0.1",
"ml-affine-transform": "^1.0.3",
"ml-convolution": "^2.0.0",
"ml-matrix": "^6.11.0",
"ml-ransac": "^1.0.0",
"ml-regression-multivariate-linear": "^2.0.4",
"ml-regression-polynomial-2d": "^0.2.0",
"ml-spectra-processing": "^14.3.0",
"robust-point-in-polygon": "^1.0.3",
"ssim.js": "^3.5.0",
"tiff": "^6.0.0"
},
"devDependencies": {
"@microsoft/api-extractor": "^7.43.1",
"@tailwindcss/forms": "^0.5.7",
"@types/jest": "^29.5.12",
"@types/jest-image-snapshot": "^6.4.0",
"@types/js-priority-queue": "^0.0.9",
"@types/node": "^20.12.7",
"@types/picomatch": "^2.3.3",
"@types/react": "^18.2.75",
"@types/react-dom": "^18.2.24",
"@types/robust-point-in-polygon": "^1.0.4",
"@vitejs/plugin-react": "^4.2.1",
"autoprefixer": "^10.4.19",
"clsx": "^2.1.0",
"cross-env": "^7.0.3",
"eslint": "^8.57.0",
"eslint-config-cheminfo-react": "^11.0.1",
"eslint-config-cheminfo-typescript": "^12.3.0",
"immer": "^10.0.4",
"jest": "^29.7.0",
"jest-image-snapshot": "^6.4.0",
"jest-matcher-deep-close-to": "^3.0.2",
"postcss": "^8.4.38",
"prettier": "^3.2.5",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.22.3",
"rimraf": "^5.0.5",
"tailwindcss": "^3.4.3",
"ts-jest": "^29.1.2",
"typescript": "~5.4.5",
"vite": "^5.2.8"
}
}