-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
36 lines (36 loc) · 1 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
{
"name": "@jsquash/avif",
"version": "2.0.0",
"main": "index.js",
"description": "Wasm AVIF encoder and decoder supporting the browser. Repackaged from Squoosh App.",
"repository": "jamsinclair/jSquash",
"author": {
"name": "Jamie Sinclair",
"email": "[email protected]"
},
"keywords": [
"image",
"optimisation",
"optimization",
"squoosh",
"wasm",
"webassembly",
"avif"
],
"license": "Apache-2.0",
"scripts": {
"clean": "rm -rf dist",
"build:codec": "cd codec && npm run build",
"build": "npm run clean && tsc && cp -r codec package.json README.md CHANGELOG.md *.d.ts .npmignore ../../LICENSE dist && cd dist/codec",
"prepublishOnly": "[[ \"$PWD\" == *'/dist' ]] && exit 0 || (echo 'Please run npm publish from the dist directory' && exit 1)"
},
"devDependencies": {
"@types/node": "^20.9.2",
"typescript": "^4.4.4"
},
"type": "module",
"sideEffects": false,
"dependencies": {
"wasm-feature-detect": "^1.2.11"
}
}