-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.72 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
54
55
56
57
58
{
"name": "react-blurhash-async",
"version": "0.0.17",
"description": "Blurhash Web Worker implementation for React",
"keywords": [
"blurhash",
"webworker",
"blur",
"hash",
"image",
"react",
"component"
],
"license": "MIT",
"author": "ku8ar",
"repository": {
"type": "git",
"url": "https://github.com/ku8ar/react-blurhash-async"
},
"homepage": "https://ku8ar.github.io/react-blurhash-async/",
"main": "lib/index.node.js",
"types": "es/index.d.ts",
"module": "es/index.js",
"scripts": {
"prepublishOnly": "npm run build",
"build": "npm run build:es && npm run build:lib",
"build:demo": "rm -rf ./docs && webpack --mode production --config webpack.demo.config.js",
"build:es": "rm -rf ./es && npm run ts -- --module es6 --outDir ./es",
"build:lib": "rm -rf ./lib && npm run ts -- --module commonjs --outDir ./lib --esModuleInterop true",
"demo": "webpack serve --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": "^1.1.1",
"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": "^1.1.2",
"html-webpack-plugin": "^5.3.1",
"prettier": "2.1.2",
"react": "^18.1.0",
"react-dom": "^18.1.0",
"react-hot-loader": "^4.13.0",
"styled-components": "^5.3.5",
"ts-loader": "9.3.0",
"typescript": "4.7.3",
"webpack": "5.37.0",
"webpack-cli": "4.9.0",
"webpack-dev-server": "3.11.2"
}
}