-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.13 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.13 KB
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
{
"name": "convavif",
"version": "1.0.0",
"description": "A WebAssembly-based image converter for the AVIF format, enabling fast encoding and decoding in browser or Node.js environments.",
"type": "module",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./wasm": "./dist/imageconverter.js"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node test/root-server.js",
"build:wasm": "scripts\\build-wasm.bat",
"build:ts": "tsup",
"build": "npm run build:wasm && npm run build:ts && npm run copy:wasm",
"build-nwb": " npm run build:ts && npm run copy:wasm",
"prepare": "npm run build",
"copy:wasm": "node scripts/copy-wasm.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"files": [
"dist"
],
"dependencies": {
"path": "^0.12.7"
},
"devDependencies": {
"@types/node": "^22.15.3",
"express": "^5.1.0",
"tsup": "^8.4.0",
"typescript": "^5.8.3"
}
}