azion
Version:
Azion Packages for Edge Computing.
37 lines (36 loc) • 913 B
JSON
{
"name": "@lib/wasm-image-processor",
"version": "1.0.0",
"description": "",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"scripts": {
"compile": "tsup --config ./tsup.config.ts",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"prettier": "prettier --write .",
"prettier:check": "prettier --check .",
"test": "jest --clearCache && jest -c jest.config.js .",
"test:watch": "jest -c jest.config.js . --watch",
"test:coverage": "jest --clearCache && jest -c jest.config.js . --coverage"
},
"exports": {
".": {
"require": "./dist/index.js",
"import": "./dist/index.mjs"
}
},
"author": "aziontech",
"license": "MIT",
"files": [
"dist",
"package.json"
],
"devDependencies": {
"@types/jest": "^29.5.12",
"jest": "^29.7.0",
"ts-jest": "^29.1.2",
"tsup": "^8.0.2"
}
}