forked from woltapp/blurhash
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.26 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
{
"name": "blurhash",
"version": "2.0.3",
"description": "Encoder and decoder for the Wolt BlurHash algorithm.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"module": "dist/esm/index.js",
"exports": {
"./package.json": "./package.json",
".": {
"browser": "./dist/esm/index.js",
"import": "./dist/index.mjs",
"module": "./dist/esm/index.js",
"node": "./dist/index.js",
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"sideEffects": false,
"repository": {
"type": "git",
"url": "https://github.com/woltapp/blurhash/tree/master/TypeScript"
},
"homepage": "https://blurha.sh",
"files": [
"dist"
],
"scripts": {
"prepublishOnly": "npm run build",
"build": "tsup",
"demo": "webpack-dev-server --mode development",
"prettier": "prettier src/**/*.ts",
"prettier-fix": "npm run prettier -- --write",
"start": "tsup --watch"
},
"keywords": [
"blurhash",
"blur",
"hash",
"image"
],
"author": "omahlama",
"license": "MIT",
"devDependencies": {
"prettier": "2.7.1",
"ts-loader": "9.3.1",
"tsup": "^6.1.3",
"typescript": "4.7.4",
"webpack": "5.73.0",
"webpack-cli": "4.10.0",
"webpack-dev-server": "4.9.3"
}
}