-
Notifications
You must be signed in to change notification settings - Fork 21
/
package.json
49 lines (49 loc) · 1.44 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
{
"name": "react-blurhash",
"version": "0.3.0",
"description": "Blurhash implementation for React",
"keywords": ["blurhash", "blur", "hash", "image", "react", "component"],
"license": "MIT",
"author": "nygardk",
"repository": {
"type": "git",
"url": "https://github.com/woltapp/react-blurhash"
},
"homepage": "https://blurha.sh",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"module": "dist/esm/index.js",
"scripts": {
"prepublishOnly": "npm run build",
"build": "tsup",
"build:demo": "rm -rf ./docs && webpack -p --config webpack.demo.config.js",
"demo": "webpack-dev-server --config webpack.demo.config.js --hot --progress",
"prettier": "prettier src/**/*.ts",
"prettier-fix": "npm run prettier -- --write",
"ts": "tsc",
"ts:watch": "npm run ts -- --noEmit --watch"
},
"peerDependencies": {
"blurhash": "^2.0.3",
"react": ">=15"
},
"devDependencies": {
"@types/prop-types": "^15.7.3",
"@types/react": "^16.9.53",
"@types/react-dom": "^16.9.8",
"@types/styled-components": "^5.1.4",
"blurhash": "^2.0.3",
"html-webpack-plugin": "^4.5.0",
"prettier": "2.1.2",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-hot-loader": "^4.13.0",
"styled-components": "^5.2.0",
"ts-loader": "8.0.6",
"tsup": "^6.5.0",
"typescript": "4.0.3",
"webpack": "4.44.2",
"webpack-cli": "3.3.12",
"webpack-dev-server": "3.11.0"
}
}