-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
43 lines (43 loc) · 1.08 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
{
"name": "@cjimmy/blurhash",
"version": "0.1.0",
"description": "Encoder and decoder for the Wolt BlurHash algorithm.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/cjimmy/blurhash-js.git"
},
"homepage": "http://blurhash.com",
"scripts": {
"build": "tsc",
"demo": "npx webpack serve --mode development --liveReload",
"lint": "npx eslint ./"
},
"keywords": [
"blurhash-js",
"blurhash",
"hash",
"image"
],
"author": "@cjimmy",
"license": "MIT",
"devDependencies": {
"glob-parent": ">=5.1.2",
"@typescript-eslint/eslint-plugin": "^4.22.0",
"@typescript-eslint/parser": "^4.22.0",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-import": "^2.22.1",
"prettier": "^2.3.1",
"eslint": "^7.24.0",
"ts-loader": "^9.2.3",
"typescript": "^4.3.4",
"webpack": "^5.39.1",
"webpack-cli": "^4.7.2",
"webpack-dev-server": "^3.11.2"
},
"bugs": {
"url": "https://github.com/cjimmy/blurhash-js/issues"
},
"dependencies": {}
}