-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
59 lines (59 loc) · 1.23 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
{
"name": "open-weather-image",
"version": "4.0.1",
"description": "A npm package to create images (base64 png) from the open weather API",
"scripts": {
"build": "bun ./build.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Kira-Kitsune/open-weather-image.git"
},
"keywords": [
"weather",
"openweather",
"canvas",
"@napi-rs/canvas",
"image",
"openweatherapi",
"openweathermap",
"base64",
"png",
"buffer",
"types",
"typescript"
],
"author": {
"name": "Kira Kitsune",
"email": "[email protected]",
"url": "https://kirakitsune.com/"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/Kira-Kitsune/open-weather-image/issues"
},
"homepage": "https://github.com/Kira-Kitsune/open-weather-image#readme",
"packageManager": "[email protected]",
"devDependencies": {
"@biomejs/biome": "1.6.4",
"@types/bun": "^1.0.12",
"tsup": "^8.0.2",
"typescript": "^5.4.4"
},
"dependencies": {
"@napi-rs/canvas": "^0.1.51"
},
"main": "./dist/cjs/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/cjs/index.js"
}
},
"files": [
"./dist/**/*"
]
}