-
-
Notifications
You must be signed in to change notification settings - Fork 38
/
package.json
64 lines (64 loc) · 2.05 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
{
"name": "@imagemagick/magick-wasm",
"version": "0.0.31",
"description": "The WASM library for ImageMagick",
"keywords": [
"imagemagick",
"magick",
"wasm",
"image",
"convert",
"resize"
],
"homepage": "https://github.com/dlemstra/magick-wasm",
"bugs": {
"url": "https://github.com/dlemstra/magick-wasm/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dlemstra/magick-wasm.git"
},
"license": "Apache-2.0",
"author": "Dirk Lemstra",
"type": "module",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.umd.cjs",
"types": "./dist/index.d.ts"
},
"./magick.wasm": "./dist/magick.wasm"
},
"main": "./dist/index.umd.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist",
"NOTICE"
],
"scripts": {
"build": "vite build && dts-bundle-generator src/index.ts -o dist/index.d.ts --external-inlines @dlemstra/magick-native",
"demo": "cd demo && tsc && node demo.js",
"lint": "eslint --max-warnings=0 .",
"issue": "cd issue && tsc && node issue.js",
"prepare": "copyfiles -f ./node_modules/@dlemstra/magick-native/NOTICE . && copyfiles -f ./node_modules/@dlemstra/magick-native/magick.wasm dist",
"test": "vitest run",
"test-dist": "node tests/dist/test-dist",
"update-index": "cd tools && tsc && node update-index.js ../src"
},
"devDependencies": {
"@dlemstra/magick-native": "2024.1006.2012",
"@types/jsdom": "21.1.7",
"@typescript-eslint/eslint-plugin": "8.12.2",
"@typescript-eslint/parser": "8.12.2",
"copyfiles": "2.4.1",
"dts-bundle-generator": "9.5.1",
"eslint": "9.13.0",
"eslint-plugin-license-header": "0.6.1",
"jsdom": "25.0.1",
"set-value": "4.1.0",
"typescript": "5.6.3",
"vite": "5.4.10",
"vitest": "2.1.4"
}
}