-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 2.39 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
{
"name": "@alxcube/lens",
"version": "2.0.1",
"type": "module",
"description": "Pure javascript library for high quality image transforms like affine, perspective, arc using algorithms from ImageMagick and incorporates reverse pixel mapping technique and elliptical weighted average resampling.",
"main": "./dist/lens.umd.cjs",
"module": "./dist/lens.js",
"types": "./dist/lens.d.ts",
"exports": {
".": {
"import": "./dist/lens.js",
"require": "./dist/lens.umd.cjs"
}
},
"scripts": {
"prebuild": "node -p \"'/**\\n * Library version\\n * @public\\n */\\nexport const VERSION = ' + JSON.stringify(require('./package.json').version) + ';'\" > src/version.ts",
"build": "tsc && vite build",
"test": "vitest --run && vitest --run --config vitest.config.browser.ts",
"test:node": "vitest",
"test:browser": "vitest --config vitest.config.browser.ts",
"lint": "eslint ./src ./spec --ext .ts && npm run prettier",
"prettier": "prettier --write 'src/**/*.ts' 'spec/**/*.ts'",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs"
},
"keywords": [
"image distortion",
"image transform",
"perspective",
"affine",
"arc",
"polynomial",
"canvas",
"reverse pixel mapping",
"elliptical weighted average",
"resampling",
"supersampling",
"imagemagick"
],
"author": "Alexander Alexandrov <[email protected]>",
"homepage": "https://alxcube.github.io/lens",
"repository": {
"type": "git",
"url": "https://github.com/alxcube/lens.git"
},
"bugs": {
"url": "https://github.com/alxcube/lens/issues"
},
"license": "Apache-2.0",
"files": [
"dist/",
"NOTICE"
],
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.59.2",
"@typescript-eslint/parser": "^5.59.2",
"@vitest/browser": "^0.34.6",
"eslint": "^8.40.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^4.2.1",
"markdown-it-mathjax3": "^4.3.2",
"prettier": "^2.8.8",
"rollup-plugin-terser": "^7.0.2",
"typescript": "^5.3.2",
"vite": "^5.0.4",
"vite-plugin-banner": "^0.7.1",
"vite-plugin-dts": "^3.6.4",
"vitepress": "^1.0.0-rc.31",
"vitest": "^0.34.6",
"webdriverio": "^8.24.6"
},
"dependencies": {
"@types/offscreencanvas": "^2019.6.4"
}
}