-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.16 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": "@timefox/bic-sydney",
"version": "1.1.7",
"description": "This is a module which allows sydney to use the Bing Image Creator to generate images for you.",
"main": "index.js",
"type": "module",
"types": "dist/types/index.d.ts",
"scripts": {
"test": "npx eslint .",
"fix": "npx eslint . --fix",
"types": "npx tsc -p .",
"doc": "jsdoc ./src/BingImageCreator.js -d docs",
"pack": "npm pack"
},
"files": [
"index.js",
"LICENSE",
"README.md",
"dist",
"src"
],
"publishConfig": {
"access": "public"
},
"pre-commit": [
"test",
"types"
],
"repository": {
"type": "git",
"url": "git+https://github.com/timefox/node-bic-sydney.git"
},
"keywords": [
"bing",
"image",
"creator",
"chat",
"bic",
"sydney"
],
"author": "timefox",
"license": "MIT",
"dependencies": {
"fetch-undici": "^3.0.1",
"undici": "^6.19.5"
},
"devDependencies": {
"@types/node": "^22.1.0",
"eslint": "^8.40.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.27.5",
"jsdoc": "^4.0.2",
"pre-commit": "^1.2.2",
"typescript": "^5.1.3"
}
}