-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 925 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
{
"name": "iata-location",
"version": "1.0.1",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.js"
},
"./data": "./dist/data/index.js",
"./data/*": "./dist/data/*/index.js"
},
"files": [
"dist"
],
"scripts": {
"prebuild": "tsc -p tsconfig.generator.json",
"build:gen": "node dist-gen/generate.js",
"build": "npm run build:gen && tsc --declaration",
"test": "echo \"Error: no test specified\" && exit 1"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/elsbrock/iata-location.git"
},
"author": "",
"license": "MIT",
"description": "",
"devDependencies": {
"@types/node": "^22.13.1",
"csv-parse": "^5.6.0",
"typescript": "^5.7.3"
}
}