-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
99 lines (99 loc) · 3.14 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
{
"name": "image-js",
"version": "0.0.0",
"description": "Image processing and manipulation in JavaScript",
"keywords": [],
"type": "module",
"author": "Michaël Zasso",
"license": "MIT",
"files": [
"src",
"lib",
"lib-cjs",
"dist-types"
],
"main": "./lib-cjs/index.js",
"module": "./lib/index.js",
"browser": {
"lib/save/write.js": "./lib/save/write.browser.js",
"lib/load/read.js": "./lib/load/read.browser.js"
},
"scripts": {
"api-extractor": "rimraf dist-types && api-extractor run --local",
"check-types": "tsc --noEmit",
"clean": "rimraf lib lib-cjs",
"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 check-types && npm run test-only && npm run eslint && npm run prettier",
"test-only": "cross-env JEST_IMAGE_SNAPSHOT_TRACK_OBSOLETE=1 vitest run --coverage",
"tsc": "npm run clean && npm run tsc-cjs && npm run tsc-esm",
"tsc-cjs": "tsc --project tsconfig.cjs.json && echo '{\"type\":\"commonjs\"}' > lib-cjs/package.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",
"dependencies": {
"bresenham-zingl": "^0.2.0",
"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.12.0",
"ml-ransac": "^1.0.0",
"ml-regression-multivariate-linear": "^2.0.4",
"ml-regression-polynomial-2d": "^1.0.0",
"ml-spectra-processing": "^14.9.1",
"robust-point-in-polygon": "^1.0.3",
"ssim.js": "^3.5.0",
"tiff": "^6.1.1",
"ts-pattern": "^5.6.1"
},
"devDependencies": {
"@microsoft/api-extractor": "^7.49.1",
"@tailwindcss/forms": "^0.5.10",
"@types/jest-image-snapshot": "^6.4.0",
"@types/js-priority-queue": "^0.0.9",
"@types/node": "^22.10.7",
"@types/react": "^19.0.7",
"@types/react-dom": "^19.0.3",
"@types/robust-point-in-polygon": "^1.0.4",
"@vitejs/plugin-react": "^4.3.4",
"@vitest/coverage-v8": "^2.1.8",
"@vitest/expect": "^2.1.8",
"autoprefixer": "^10.4.20",
"clsx": "^2.1.1",
"cross-env": "^7.0.3",
"eslint": "^9.18.0",
"eslint-config-cheminfo-react": "^15.0.0",
"eslint-config-cheminfo-typescript": "^17.0.0",
"immer": "^10.1.1",
"jest-image-snapshot": "^6.4.0",
"jest-matcher-deep-close-to": "^3.0.2",
"postcss": "^8.5.1",
"prettier": "^3.4.2",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-router-dom": "^7.1.3",
"rimraf": "^6.0.1",
"tailwindcss": "^3.4.17",
"typescript": "~5.7.3",
"vite": "^6.0.8",
"vitest": "^2.1.8"
}
}