-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 951 Bytes
/
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
{
"name": "ultra-exact-ncst",
"version": "1.2.3",
"description": "nowcast with coordinate",
"type": "module",
"exports": {
".": {
"types": {
"require": "./dist/cjs/types/index.d.ts",
"import": "./dist/esm/types/index.d.ts"
},
"default": {
"require": "./dist/cjs/index.js",
"import": "./dist/esm/index.js"
}
}
},
"scripts": {
"test:esm": "node test.mjs",
"test:cjs": "node test.cjs",
"build:esm": "tsc --project tsconfig.esm.json",
"build:cjs": "tsc --project tsconfig.cjs.json",
"build": "npm run build:esm && npm run build:cjs"
},
"author": "GulSam00",
"license": "ISC",
"Keywords": [
"nowcast",
"coordinate"
],
"dependencies": {
"axios": "^1.7.7",
"date-fns": "^4.1.0"
},
"devDependencies": {
"dotenv": "^16.4.5",
"typescript": "^5.6.3",
"ultra-exact-ncst": "^1.2.2"
},
"files": [
"dist/**/*"
]
}