-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.41 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
{
"version": "0.3.1",
"license": "MIT",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"dist",
"src"
],
"engines": {
"node": ">=16"
},
"scripts": {
"start": "tsdx watch",
"build": "tsdx build --target node",
"test": "tsdx test",
"lint": "tsdx lint",
"prepublishOnly": "tsdx build"
},
"husky": {
"hooks": {
"pre-commit": "tsdx lint"
}
},
"prettier": {
"printWidth": 100,
"semi": true,
"singleQuote": true,
"trailingComma": "es5"
},
"name": "@cofacts/media-manager",
"author": "Cofacts message reporting chatbot and crowd-sourced fact-checking community (「Cofacts 真的假的」訊息回報機器人與查證協作社群)",
"module": "dist/media-manager.esm.js",
"devDependencies": {
"@types/content-type": "^1.1.5",
"@types/node-fetch": "^2.6.1",
"@types/serve-handler": "^6.1.1",
"@types/sharp": "^0.30.2",
"dotenv": "^16.0.1",
"husky": "^8.0.1",
"serve-handler": "^6.1.3",
"tsdx": "^0.14.1",
"tslib": "^2.4.0",
"typedoc": "^0.23.10",
"typescript": "^4.6.4"
},
"dependencies": {
"@google-cloud/storage": "^5.19.4",
"content-type": "^1.0.4",
"image-hash": "^5.3.1",
"node-fetch": "^2.6.7",
"sharp": "^0.30.5"
},
"keywords": [
"Multimedia information retrieval",
"Image search",
"Near-duplicate image search",
"Multimedia indexing"
]
}