38 lines
936 B
JSON
38 lines
936 B
JSON
{
|
|
"name": "blurhash",
|
|
"version": "1.1.3",
|
|
"description": "Encoder and decoder for the Wolt BlurHash algorithm.",
|
|
"main": "dist/index.js",
|
|
"types": "dist/index.d.ts",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/woltapp/blurhash/tree/master/TypeScript"
|
|
},
|
|
"homepage": "http://blurhash.com",
|
|
"scripts": {
|
|
"prepublishOnly": "npm run build",
|
|
"build": "npm run ts",
|
|
"demo": "webpack-dev-server --mode development",
|
|
"prettier": "prettier src/**/*.ts",
|
|
"prettier-fix": "npm run prettier -- --write",
|
|
"ts": "tsc",
|
|
"ts:watch": "npm run ts -- --noEmit --watch"
|
|
},
|
|
"keywords": [
|
|
"blurhash",
|
|
"blur",
|
|
"hash",
|
|
"image"
|
|
],
|
|
"author": "omahlama",
|
|
"license": "MIT",
|
|
"devDependencies": {
|
|
"prettier": "1.18.2",
|
|
"ts-loader": "6.0.4",
|
|
"typescript": "3.5.3",
|
|
"webpack": "4.38.0",
|
|
"webpack-cli": "^3.3.6",
|
|
"webpack-dev-server": "3.7.2"
|
|
}
|
|
}
|