-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.43 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
{
"name": "aviationweather",
"version": "3.0.4",
"description": "Node.js wrapper for aviation weather, written in TypeScript",
"keywords": [
"aviation",
"flight",
"node",
"wrapper",
"weather"
],
"homepage": "https://github.com/oceanroleplay/aviationweather#readme",
"bugs": {
"url": "https://github.com/oceanroleplay/aviationweather/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/oceanroleplay/aviationweather.git"
},
"license": "Apache-2.0",
"contributors": [
"Vijay Meena <indianoceanroleplay@gmail.com> (https://github.com/samarmeena)"
],
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.js"
}
},
"types": "dist/index.d.ts",
"files": [
"dist",
"LICENSE",
"README.md",
"SECURITY.md",
"CHANGELOG.md",
"package.json"
],
"scripts": {
"build": "tsup src/index.ts --format cjs,esm --dts",
"check:lint": "eslint ./",
"check:prettier": "prettier --check .",
"fix:prettier": "prettier --write ."
},
"dependencies": {
"axios": "^1.6.0",
"tslib": "^2.6.2"
},
"devDependencies": {
"@changesets/cli": "^2.26.2",
"@types/node": "^20.8.9",
"@typescript-eslint/eslint-plugin": "^6.9.1",
"@typescript-eslint/parser": "^6.9.1",
"eslint": "^8.52.0",
"prettier": "^3.0.3",
"ts-node": "^10.9.1",
"tsup": "^7.2.0",
"typescript": "^5.2.2"
}
}