-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.58 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
59
60
61
62
63
64
65
66
67
{
"name": "ssb-blobs-blurhash",
"version": "0.0.3",
"description": "SSB secret stack plugin to generate a blurhash hash for a provided blob",
"main": "index.js",
"engines": {
"node": ">=12"
},
"scripts": {
"format": "prettier --write \"*.{js,ts}\"",
"format-staged": "pretty-quick --staged --pattern \"*.{js,ts}\"",
"lint": "tsc",
"prepare": "husky install",
"release": "standard-version",
"test": "tape test/*.js | tap-arc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/achou11/ssb-blobs-blurhash.git"
},
"keywords": [
"blurhash",
"ssb",
"blobs",
"secret",
"stack"
],
"author": "Andrew Chou <andrewchou@fastmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/achou11/ssb-blobs-blurhash/issues"
},
"homepage": "https://github.com/achou11/ssb-blobs-blurhash#readme",
"files": [
"*.js",
"types/helpers.d.ts"
],
"devDependencies": {
"@types/node": "^18.6.4",
"@types/pull-stream": "^3.6.2",
"@types/sharp": "^0.30.4",
"husky": "^7.0.4",
"prettier": "^2.7.1",
"pretty-quick": "^3.1.3",
"secret-stack": "^6.4.1",
"ssb-blobs": "^2.0.1",
"ssb-caps": "^1.1.0",
"ssb-keys": "^8.4.1",
"standard-version": "^9.5.0",
"tap-arc": "^0.3.5",
"tape": "^5.5.3",
"tmp": "^0.2.1",
"typescript": "~4.7.4"
},
"peerDependencies": {
"ssb-blobs": "^2.0.1"
},
"dependencies": {
"blurhash": "^1.1.5",
"pull-stream": "^3.6.14",
"jimp": "0.16.1"
},
"prettier": {
"semi": false,
"singleQuote": true
}
}