-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
56 lines (56 loc) · 1.25 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
{
"name": "blurhash-base64",
"version": "0.0.3",
"description": "Utility to convert blurhash to base64",
"main": "dist/index.js",
"module": "dist/index.esm.js",
"files": [
"dist"
],
"scripts": {
"build": "rollup -c",
"test": "yarn build && node ./test/index.js",
"watch": "rollup -cw",
"commit": "gacp",
"clean:dist": "npm exec -- rimraf ./dist"
},
"dependencies": {
"blurhash": "^2.0.5"
},
"devDependencies": {
"@types/node": "^20.6.0",
"gacp": "^3.0.3",
"rimraf": "^3.0.2",
"rollup": "^2.78.1",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.34.0",
"typescript": "^4.8.2"
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mcnaveen/blurhash-base64.git"
},
"author": "mcnaveen <[email protected]>",
"homepage": "https://github.com/mcnaveen/blurhash-base64#readme",
"bugs": {
"url": "https://github.com/mcnaveen/blurhash-base64/issues"
},
"license": "MIT",
"keywords": [
"blurhash",
"plaiceholder",
"optimization",
"next/image",
"next-image",
"blurhash-to-base64"
],
"gacp": {
"add": false,
"push": false,
"emoji": "emoji",
"editor": false
}
}