-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 926 Bytes
/
package.json
File metadata and controls
43 lines (43 loc) · 926 Bytes
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
{
"name": "img-toolkit",
"version": "2.1.1",
"type": "module",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/2YH02/img-toolkit.git"
},
"homepage": "https://github.com/2YH02/img-toolkit#readme",
"bugs": {
"url": "https://github.com/2YH02/img-toolkit/issues"
},
"main": "dist/resizeImage.js",
"types": "dist/types/resizeImage.d.ts",
"module": "dist/resizeImage.js",
"files": [
"dist",
"pkg"
],
"exports": {
".": {
"types": "./dist/types/resizeImage.d.ts",
"import": "./dist/resizeImage.js",
"default": "./dist/resizeImage.js"
}
},
"scripts": {
"build:wasm": "wasm-pack build --target web",
"build:ts": "tsc",
"build": "npm run build:wasm && npm run build:ts"
},
"devDependencies": {
"typescript": "^5.3.3"
},
"keywords": [
"wasm",
"image",
"resize",
"toolkit",
"rust"
]
}