-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
69 lines (69 loc) · 1.84 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
68
69
{
"name": "bmkg-wrapper",
"version": "2.0.0",
"description": "Sebuah API wrapper untuk mempermudah akses API data terbuka Badan Meteorologi, Klimatologi, dan Geofisika.",
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"types": "./dist/cjs/index.d.ts",
"type": "module",
"exports": {
".": {
"import": {
"types": "./dist/esm/index.d.ts",
"default": "./dist/esm/index.js"
},
"require": {
"types": "./dist/cjs/index.d.ts",
"default": "./dist/cjs/index.js"
},
"default": "./dist/cjs/index.js"
}
},
"scripts": {
"build": "npm run clean && npm run build:esm && npm run build:cjs && tsconfig-to-dual-package",
"build:esm": "tsc -p tsconfig.json",
"build:cjs": "tsc -p tsconfig.cjs.json",
"clean": "rimraf dist",
"format": "prettier --ignore-path .gitignore --config .prettierrc --write \"**/*.ts\"",
"lint": "eslint .",
"lint:fix": "eslint . --fix"
},
"files": [
"dist"
],
"homepage": "https://github.com/SlavyanDesu/bmkg-wrapper#readme",
"bugs": {
"url": "https://github.com/SlavyanDesu/bmkg-wrapper/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/SlavyanDesu/bmkg-wrapper.git"
},
"keywords": [
"bmkg",
"api",
"wrapper",
"json",
"simple",
"weather"
],
"author": "SlavyanDesu",
"license": "MIT",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.48.2",
"@typescript-eslint/parser": "^5.48.2",
"eslint": "^8.32.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-prettier": "^4.2.1",
"prettier": "^2.8.3",
"rimraf": "^4.1.1",
"ts-node": "^10.9.1",
"tsconfig-to-dual-package": "^1.1.0",
"typescript": "^4.9.4"
},
"dependencies": {
"axios": "^1.2.3",
"dayjs": "^1.11.7",
"fast-xml-parser": "^4.0.13"
}
}